/********** Template CSS **********/
:root {
    --primary:rgb(52 122 206);
;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** 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;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

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

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

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

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


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    /*background: linear-gradient(45deg, #c29e40, #4b3b15);*/
  background: linear-gradient(165deg, rgb(52 122 206), rgb(46, 88, 140));
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    /*background: linear-gradient(45deg, #0e0d0d, #5e4c19);*/
     background: linear-gradient(45deg, #393a45, #000000);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../NEWIMAGES/testimonialbg.jpg);
    /* background-position: center center; */
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: #FFFFFF;
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    /* margin-top: 110px; */
    /* padding-top: 180px; */
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


/* New Changes Made By BS */

.navbar-dark .navbar-nav .nav-link:last-child {
    margin-right: 0px;
}

/* Hero Start */
.video-container {
    position: relative;
    width: 100%;
}

.video-bg {
    width: 100%;
    height: auto;
    display: block;
}

.video-content {
    position: absolute;
      top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 1;
    padding: 20px;
}

.video-content h1 {
    font-size: 3rem;
    margin: 0 0 10px;
    color:#000000;
    text-shadow: #bb983c 0 0 13px, #b9953a 0 0 3px, #bf9b3e 0 0 3px, #c19d3f 0 0 9px, #c7a143 0 0 1px, #bb983c 0 0 12px, #bf9b3b 0 0 1px, #bb9b3c 0 0 21px;
}

.video-content p {
    font-size: 1.2rem;
    margin: 0 0 20px;
}

.video-content button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color:rgb(52 122 206);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Hero ENd */

.navbar-brand .logoheader {
    width: 68px;
}

.bg-black {
    background-color: #000000;
}

/* Button Animation Start */
.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 20px;
    height: 100px; */
}

.btn-container a {
    position: relative;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-container a .btn-container button {
    position: relative;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-explosion {
    background-color: rgb(52 122 206);
    color: white;
}

.btn-explosion:hover {
    animation: explode 0.5s forwards;
    box-shadow: 4px 1px 10px 8px #000000;
    color: white;
}

@keyframes explode {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    60% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1.1);
    }
}


.btn-pulse {
    background-color:  rgb(52 122 206);
    color: white;
}

.btn-pulse:hover {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(184, 147, 56, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(184, 147, 56, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(184, 147, 56, 0);
    }
}

/* Button Animation End */

.room-item:hover .btn-pulse {
    animation: pulse 1.5s infinite;
}

.room-item {
    position: relative;
    transition: all 0.4s ease-in-out;
    height: 100%;
}

.room-item:hover {
    box-shadow: 3px 7px 26px 8px rgb(0 0 0 / 43%) !important;
}

.bg1 {
    background: linear-gradient(180deg, rgb(173, 216, 230), #ffffff);
}

.bg2 {
    background: linear-gradient(180deg, #ffffff, #fffaee);
}

.bg3 {
        background: linear-gradient(180deg, #347ace40, #ffffffc7);
}

.text-black {
    color: #ffffff;
}

.service-item:hover i {
    color: #b99539 !important;
}

.whatsapp-float img {
    width: 50px;
    position: fixed;
    bottom: 40px;
    left: 20px;
    border-radius: 10px;
    z-index: 1;
}

.footer .logofooter {
    width: 100px;
}

/* Project Start */
.projectbody {
    font-family: "Poppins", sans-serif;
    /* background: linear-gradient(135deg, #1a1a2e, #16213e); */
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    padding: 2rem 0;
}

/* .container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
} */

.carousel-container {
    position: relative;
    width: 100%;
    /* padding: 2rem 0; */
}

.carousel {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-out;
    padding: 1.5rem 0;
}

.card {
    flex: 0 0 350px;
    height: 500px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    transform-origin: center;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px  #0000009e;
}

.card-img {
    width: 100%;
    height: 60%;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    transform-origin: center;
}

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

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 63%;
}

.card-tag {
    font-size: 0.85rem;
    color: #4f86b1;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.card-text {
    font-size: 0.95rem;
    color: #b3b3b3;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.card-button {
    align-self: flex-start;
    padding: 0.5rem 1rem;
    background: linear-gradient(90deg, #4f86b1, #4f86b1);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgb(184 147 56 / 31%);
}

.card-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgb(184 147 56 / 51%);
    color: white;
}

.navigation {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #4f86b1;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    /* background: rgba(255, 255, 255, 0.2); */
    transform: scale(1.1);
}

.nav-btn:active {
    transform: scale(0.95);
}

.dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #b89338;
    transform: scale(1.3);
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-top: 1rem;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #b89338, #b893383b);
    width: 16.66%;
    transition: width 0.3s ease;
}

@media (max-width: 768px) {
    .card {
        flex: 0 0 300px;
        height: 450px;
    }
}

@media (max-width: 480px) {
    .card {
        flex: 0 0 250px;
        height: 400px;
    }

    .card-title {
        font-size: 1.2rem;
    }
}

/* Project End */

/* Our Process Start */
/* Core Values Section Start */
.do_section .heading_container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.do_section .do_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 10px;
}

.do_section .do_container .box {
    text-align: center;
    position: relative;
    z-index: 5;
    /* margin: 35px 25px 0 25px; */
    margin: 35px 64px 0 25px;
}

.do_section .do_container .box .img-box {
    width: 120px;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #386db8;
    border-radius: 100%;
}

.do_section .do_container .box .img-box img {
    width: 45px;
}

.do_section .do_container .box .detail-box {
    margin-top: 35px;
}

.do_section .do_container .box:hover .img-box {
    background-color: #0000009e;
}

.do_section .do_container .arrow_bg::before {
    content: "";
    position: absolute;
    top: -35px;
    left: 2px;
    width: 200%;
    height: 101%;
    z-index: 3;
    background-size: cover;
}

.do_section .do_container .arrow-start::before {
    background-image: url(../NEWIMAGES/arrow-start.png);
}

.do_section .do_container .arrow-middle::before {
    background-image: url(../NEWIMAGES/arrow-middle.png);
}

.do_section .do_container .arrow-end::before {
    background-image: url(../NEWIMAGES/arrow-end.png);
}

/*  */
.img-box {
    position: relative;
    display: inline-block;
}

.dotted-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border: 4px dotted #000;
    /* Adjust color and size as needed */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    /* Ensures the dotted circle doesn't interfere with hover */
}

.box:hover .dotted-circle {
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Core Values Section ENd */
/* Our Process End */

.room-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* .tmtext{
    text-align: justify;
    hyphens: auto;
} */
.abtext {
    text-align: justify;
    hyphens: auto;
}

.box1 {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box1:hover {
    transform: translateY(-8px) scale(1.02);
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
}

.box1 {
    /* background-color: #fff; */
    transition: all 0.4s ease;
    /* border: 1px solid #e0e0e0; */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.box1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,  rgb(52 122 206), #bd9b3e);
    /* your gradient colors */
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
}

.box1:hover::before {
    opacity: 1;
}

.box1:hover {
    transform: translateY(-10px) scale(1.03);
    color: #fff;
    /* Optional: makes text white on hover */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bg-gray {
    background-color: #f9f9f9;
}

.site-heading h2 {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.site-heading h2 span {
    color:  rgb(52 122 206);
}

.site-heading h4 {
    display: inline-block;
    padding-bottom: 20px;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
}

.site-heading h4::before {
    background:  rgb(52 122 206) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    width: 50px;
}

.site-heading {
    margin-bottom: 60px;
    overflow: hidden;
    margin-top: -5px;
}

.carousel-shadow .owl-stage-outer {
    margin: -15px -15px 0;
    padding: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot span {
    background: #ffffff none repeat scroll 0 0;
    border: 2px solid;
    height: 15px;
    margin: 0 5px;
    width: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot.active span {
    background: rgb(52 122 206) none repeat scroll 0 0;
    border-color:  rgb(52 122 206);
}

.we-offer-area .item {
    background: #ffffff none repeat scroll 0 0;
    border-left: 2px solid  rgb(52 122 206);
    -moz-box-shadow: 0 0 10px #cccccc;
    -webkit-box-shadow: 0 0 10px #cccccc;
    -o-box-shadow: 0 0 10px #cccccc;
    box-shadow: 0 0 10px #cccccc;
    overflow: hidden;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.we-offer-area.text-center .item {
    background: #ffffff none repeat scroll 0 0;
    border: medium none;
    padding: 67px 40px 64px;
}

.we-offer-area.text-center .item i {
    background:  rgb(52 122 206) none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    font-size: 40px;
    height: 80px;
    line-height: 80px;
    position: relative;
    text-align: center;
    width: 80px;
    z-index: 1;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    margin-bottom: 25px;
}

.we-offer-area.text-center .item i::after {
    border: 2px solid rgb(52 122 206);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 90px;
    left: -5px;
    position: absolute;
    top: -5px;
    width: 90px;
    z-index: -1;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}

.we-offer-area.item-border-less .item {
    border: medium none;
}

.we-offer-area .our-offer-items.less-carousel .equal-height {
    margin-bottom: 30px;
}

.we-offer-area.item-border-less .item .number {
    font-family: "Poppins", sans-serif;
    font-size: 50px;
    font-weight: 900;
    opacity: 0.1;
    position: absolute;
    right: 30px;
    top: 30px;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item,
.we-offer-area.center-active .single-item:nth-child(2n) .item {
    background: #bd9b3e none repeat scroll 0 0;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item i,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item h4,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item p,
.we-offer-area.center-active .single-item:nth-child(2n) .item i,
.we-offer-area.center-active .single-item:nth-child(2n) .item h4,
.we-offer-area.center-active .single-item:nth-child(2n) .item p {
    color: #ffffff;
}

.we-offer-area .item i {
    color: #bd9b3e;
    display: inline-block;
    font-size: 60px;
    margin-bottom: 20px;
}

.we-offer-area .item h4 {
    font-weight: 600;
    text-transform: capitalize;
}

.we-offer-area .item p {
    margin: 0;
}

.we-offer-area .item i,
.we-offer-area .item h4,
.we-offer-area .item p {
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}

.we-offer-area .item::after {
    background: #bd9b3e none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    width: 100%;
    z-index: -1;
}

.we-offer-area .item:hover::after {
    left: 0;
}

.we-offer-area .item:hover i,
.we-offer-area .item:hover h4,
.we-offer-area .item:hover p {
    color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i::after {
    border-color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i {
    background-color: #ffffff !important;
    color: #bd9b3e !important;

}

.we-offer-area.text-left .item i {
    background: #bd9b3e none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    font-size: 60px;
    height: 100px;
    line-height: 100px;
    margin-bottom: 30px;
    position: relative;
    width: 100px;
    z-index: 1;
    text-align: center;
}

.we-offer-area.text-left .item i::after {
    border: 2px solid #bd9b3e;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 120px;
    left: -10px;
    position: absolute;
    top: -10px;
    width: 120px;
}

.service-box {
    background: linear-gradient(to right, #ffffff, #f1f1f1);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-8px);
    background: linear-gradient(to right, rgb(111, 150, 199), #f8fff8);
    box-shadow: 0 15px 30px rgba(0, 128, 0, 0.1);
    color: black;
}

.service-img {
    border-radius: 15px;
    width: 80%;
    height: 300px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}


.alt-style {
    background: linear-gradient(to left, #f9f9ff, #eaf3ff);
}

.alt-style:hover {
    background: linear-gradient(to left, #e0f0ff, #f3fbff);
    box-shadow: 0 15px 30px rgba(0, 0, 255, 0.1);
}

.serp {
    text-align: justify;
    hyphens: auto;
}

/* project section */
.projects-section {
    background-color: #f8f9fa;
}

.project-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0);
}

.project-img img {
    width: 250px;
    height: 150px;
    object-fit: cover;
}

.project-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-content p {
    font-size: 0.95rem;
    color: #555;
}

/*  */
@media (max-width: 768px) {

    .video-content p {
        font-size: 12px;
        margin: 0 0 20px;
    }

    .video-content h1 {
        font-size: 1rem;
        margin: 0 0 10px;
        color: white;
        text-shadow: #bb983c 0 0 13px, #b9953a 0 0 3px, #bf9b3e 0 0 3px, #c19d3f 0 0 9px, #c7a143 0 0 1px, #bb983c 0 0 12px, #bf9b3b 0 0 1px, #bb9b3c 0 0 21px;
    }
    .btn-container a {
        position: relative;
        padding: 9px 14px;
        font-size: 10px;
        font-weight: 600;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        outline: none;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 1;
    padding: 0px;
    width: 100%;
}
    }
    .head-color{
        color: rgb(52 122 206);
    }
    .head-baclr{
    background-color: rgb(52 122 206);

    }
    .arrow-clr{
        color: #fff;
    }