.hero {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Gradient */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(15, 8, 4, .90) 35%,
            rgba(15, 8, 4, .45) 65%,
            rgba(15, 8, 4, .15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    margin-top: 78px;
}

.hero .sub-title {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #c89b4b;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 0px;
}

.hero .sub-title span {
    width: 45px;
    height: 1px;
    background: #c89b4b;
}

.hero .sub-title p {
    line-height: 1.6;
}

.hero-content h1 {
    font-size: 70px;
    line-height: 1;
    color: #d7a95d;
    margin: 20px 0;
}

.hero .desc {
    font-size: 15px;
    color: #ddd;
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 35px;
}

.hero-btn {
    display: flex;
    gap: 20px;
}

.hero .page_wrapper {
    height: 100%;
}

.about-section {
    padding: 100px 0;
}

.about-section .about-wrapper>div {
    width: 50%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.feature-box {
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    gap: 22px;
    padding: 20px 0;
    border-top: 1px solid #ececec;
}

.feature-item:last-child {
    border-bottom: 1px solid #ececec;
}

.icon {
    min-width: 65px;
    width: 65px;
    height: 65px;
    border: 1px solid #d7c2a2;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    color: #b88a44;
    font-size: 26px;
    transition: .35s;
}

.feature-item:hover .icon {
    transform: translateY(-4px);
}

.feature-item h3 {
    margin: 0 0 8px;
    font-size: 26px;
}

.feature-item p {
    margin: 0;
    line-height: 1.8;
}

.about-section,
.our_gallery,
.testimonial_section,
.manyavar-experience,
.cta_section {
    padding: 80px 0;
}

.about-section .about-wrapper {
    display: flex;
    gap: 40px;
}

.services-section,
.pricing_plan {
    padding: 80px 0;
    background: #edf5f7;
}

.section-title {
    max-width: 720px;
    margin: 0 auto 70px;
    text-align: center;
}

.services-section .section-title p,
.our_gallery .section-title p {
    max-width: 700px;
    margin: auto;
}

.services-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    list-style-type: none;
}

.services-list .service-item {
    text-align: center;
    padding: 32px 30px 20px 30px;
    -webkit-box-shadow: 0 0 10px 0 rgba(18, 31, 56, .1);
    -moz-box-shadow: 0 0 10px 0 rgba(18, 31, 56, .1);
    box-shadow: 0 0 10px 0 rgba(18, 31, 56, .1);
    background-color: #fff;
    width: calc(33.33% - 20px);
    position: relative;
}

.services-list .service-item .highlight {
    font-weight: 600;
    color: #ff9d00;
    font-size: 16px;
}

.services-list .service-item h3 {
    font-size: 26px;
    line-height: 33px;
    margin-bottom: 3px;
    text-transform: capitalize;
}

.services-list .service-item h3::after {
    content: '';
    width: 50px;
    height: 2px;
    display: block;
    background-color: #d7a95d;
    margin: 10px auto 0;
}

.services-list .service-item p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.our_gallery .gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: all 700ms ease;
}

.our_gallery .gallery-item:hover img {
    transform: scale(1.07) rotate(0.5deg);
    filter: inherit;
}

.gallery-item.large {
    grid-column: span 2;
}

.search_img {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .search_img::before {
    content: '';
    background-color: #121f38;
    opacity: .5;
    position: absolute;
    inset: 0;
}

.gallery-item .search_icon {
    display: none;
}

.gallery-item:hover .search_icon {
    background: #d7a95d;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pricing_plan .section-title {
    margin: 0;
    text-align: left;
    display: flex;
    max-width: 100%;
    gap: 30px;
    align-items: start;
    justify-content: space-between;
    padding-bottom: 30px;
}

.pricing_plan .section-title .btn-secondary,
.btn-secondary.package-btn {
    border: 1px solid #1b1b1b;
    color: #1b1b1b;
    min-width: 210px;
    max-width: 210px;
    margin: 0 auto;
}

.pricing_plan .section-title .btn-secondary:hover,
.btn-secondary.package-btn:hover {
    color: #fff;
    background-color: #1b1b1b;
}

.pricing_plan .section-title .btn-secondary:hover svg path,
.btn-secondary.package-btn:hover svg path {
    fill: #fff;
}

.pricing_plan .section-title p {
    margin-bottom: 0;
    max-width: 600px;
    margin-top: 20px;
}

.pricing_plan .section-title h2 {
    margin-bottom: 0;
}

.packages-grid {
    display: flex;
    gap: 20px;
    row-gap: 60px;
    flex-wrap: wrap;
    padding-top: 40px;
}

.packages-grid .package-card {
    background-color: #fff;
    border-radius: 6px;
    text-align: center;
    transition: all 0.4s ease 0s;
    padding: 70px 20px 90px;
    box-shadow: 0 0 10px 0 rgba(18, 31, 56, .1);
    transform: translateY(0);
    width: calc(25% - 15px);
    border-bottom: 6px solid #d7a95d;
    position: relative;
}

.packages-grid .package-card:hover,
.services-list .service-item:hover {
    transform: translateY(-5px);
}

.package-card h3 {
    margin-top: 0;
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 16px;
}

.packages-grid .package-card ul {
    list-style-type: none;
    margin: 0;
    padding: 12px 16px 20px;
}

.packages-grid .package-card ul li {
    padding-top: 12px;
    border-bottom: 1px solid rgb(42, 42, 42, .07);
    padding-bottom: 12px;
    font-size: 16px;
    line-height: 20px;
}

.packages-grid .package-card ul li:last-child {
    border: unset;
}

.btn-secondary.package-btn {
    position: absolute;
    bottom: 26px;
    left: 0;
    right: 0;
}

.custom_slider {
    position: relative;
}

.testimonial-section {
    background: #1b0f08;
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}

.testimonial-wrapper {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: .5s ease;
    gap: 20px;
}

.testimonial-card {
    flex: 0 0 calc((100% - 50px) / 3);
    box-sizing: border-box;
    background: #2a170d;
    border: 1px solid rgba(212, 162, 91, .25);
    border-radius: 16px;
    padding: 35px;
    color: #fff;
}

.quote {
    color: #d4a25b;
    font-size: 45px;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 28px;
    min-height: 110px;
}

.stars {
    color: #d4a25b;
    letter-spacing: 4px;
    margin: 20px 0;
}

.client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.client h3 {
    font-size: 16px;
    color: #fff;
}

.client span {
    color: #b5a18d;
    font-size: 14px;
}

.testimonial_section .nav-btn {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: #d4a25b;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 1;
}

.testimonial_section .prev {
    left: 20px;
}

.testimonial_section .next {
    right: 20px;
}

.featured_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.manyavar-experience .featured-thumbnail {
    overflow: hidden;
}

.featured-imagebox {
    width: calc(33.33% - 14px);
}

.featured-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all 700ms ease;
}

.manyavar-experience .featured-thumbnail:hover img {
    transform: scale(1.07);
    filter: inherit;
}

.featured-imagebox h3 {
    font-size: 28px;
    line-height: 38px;
    padding: 20px;
    text-align: center;
}

.cta_section span {
    font-size: 17px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
    display: block;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.cta_section h2 {
    font-size: 60px;
    line-height: 72px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    text-transform: capitalize;
    color: #fff;
}

.cta_section p {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta_section .page_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}

.cta_section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-color: #121F38;
    position: relative;
    color: #fff;
}

.cta_section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #121f38ba;
}

.cta_section .btn-secondary {
    margin-top: 40px;
}

.section-title .golden_icon,
.cta_section .golden_icon,
.about-section .golden_icon,
.hero-content .golden_icon {
    max-width: 190px;
    height: auto;
    margin: 0 auto 20px;
}

.pricing_plan .golden_icon,
.about-section .golden_icon,
.hero-content .golden_icon {
    margin-left: 0;
}

.packages-grid .package-card ul li {
    font-size: 14px;
    line-height: 18px;
}

.custom_slider .prev.disabled,
.custom_slider .next.disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

.gallery-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 99999;
}

.gallery-popup.active {
    opacity: 1;
    visibility: visible;
}

.gallery-popup img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    line-height: 1;
}

.popup-prev,
.popup-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #121F38;
    font-size: 28px;
    cursor: pointer;
    transition: .3s;
    font-size: 18px;
    font-weight: 400;
}

.popup-prev:hover,
.popup-next:hover {
    background: #d7a95d;
    color: #121F38;
}

.popup-prev {
    left: 40px;
}

.popup-next {
    right: 40px;
}

.pricing_plan .price-box {
    position: relative;
    width: 420px;
    padding: 70px 40px 45px;
    background: #fff;
    border: 1px solid #d7a95d;
    text-align: center;
    overflow: visible;
    border-radius: 10px;
}

.pricing_plan .price-icon {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #d8b16a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #c79647;
}

.pricing_plan .price-icon span {
    background-color: #c79647;
    border-radius: 100%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing_plan .price-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #18233d;
    margin-bottom: 18px;
}

.pricing_plan .price-box h2 {
    margin: 18px 0;
    font-size: 58px;
    font-weight: 700;
    color: #18233d;
    line-height: 1;
}

.pricing_plan .divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 18px 0;
}

.divider span {
    position: relative;
    width: 120px;
    height: 1px;
    background: #d8b16a;
}

.divider span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #d8b16a;
    transform: translate(-50%, -50%) rotate(45deg);
}

.package-card span.card_icon {
    position: absolute;
    top: -37px;
    background-color: #fbf8f4;
    border: 1px solid #e3e3e3;
    border-radius: 100%;
    width: 80px;
    height: 80px;
    left: 50%;
    transform: translatex(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 0 10px 0 rgba(18, 31, 56, .1);
}

.about-section .about-wrapper .about-image {
    overflow: hidden;
}







@media(max-width: 1439px) {
    .hero-content h1 {
        font-size: 60px;
    }

    .hero .sub-title {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero-content h1 {
        margin: 14px 0;
    }

    .hero-content {
        max-width: 436px;
        margin-top: 72px;
    }

    .hero .desc {
        font-size: 14px;
    }

    .hero {
        height: 700px;
    }

    .cta_section .golden_icon,
    .about-section .golden_icon,
    .hero-content .golden_icon {
        max-width: 160px;
    }

    .cta_section h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .about-content h2 {
        max-width: 500px;
    }

    .services-list .service-item h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .featured-imagebox h3 {
        font-size: 22px;
        line-height: 32px;
    }

    .cta_section p {
        font-size: 16px;
        line-height: 26px;
        max-width: 600px;
    }

    .cta_section .btn-secondary {
        margin-top: 20px;
    }

    .services-section .section-title p,
    .our_gallery .section-title p {
        max-width: 600px;
    }

    .pricing_plan .section-title .btn-secondary,
    .btn-secondary.package-btn {
        min-width: 178px;
        max-width: 178px;
    }

    .package-card h3 {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 12px;
    }

    .testimonial-card p {
        line-height: 24px;
        min-height: 82px;
        font-size: 14px;
    }

    .client span {
        font-size: 12px;
    }
}

@media(max-width: 1200px) {
    .pricing_plan .price-box h2 {
        font-size: 48px;
    }
}

@media(max-width:991px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 36px) / 2);
    }

    .about-image img {
        height: 450px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
    }

    .hero-content {
        margin-top: 66px;
    }

    .hero {
        height: 645px;
    }

    .about-section .about-wrapper {
        flex-direction: column;
    }

    .about-section .about-wrapper>div {
        width: 100%;
    }

    .about-section,
    .our_gallery,
    .testimonial_section,
    .manyavar-experience,
    .cta_section,
    .services-section,
    .pricing_plan {
        padding: 60px 0;
    }

    .services-list {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .services-list .service-item,
    .featured-imagebox,
    .packages-grid .package-card {
        width: calc(50% - 10px);
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .testimonial_section .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .cta_section p {
        font-size: 14px;
        line-height: 24px;
    }
}

@media(max-width:767px) {
    .testimonial-card {
        min-width: 100%;
        margin: 0;
    }

    .hero-btn {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero .sub-title {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 5px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .our_gallery .gallery-item img {
        height: 100%;
    }

    .hero .sub-title span {
        width: 30px;
    }

    .services-list .service-item,
    .featured-imagebox,
    .packages-grid .package-card {
        width: 100%;
    }

    .pricing_plan .section-title {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .pricing_plan .section-title p {
        max-width: 100%;
        padding: 0;
        border: 0;
    }

    .testimonial-track {
        gap: 0;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .hero-content {
        margin-top: 50px;
    }

    .popup-prev {
        left: 15px;
    }

    .popup-next {
        right: 15px;
    }

    .popup-prev,
    .popup-next {
        width: 40px;
        height: 40px;
    }

    .popup-close {
        right: 15px;
    }

    .pricing_plan .golden_icon {
        margin-left: auto;
    }

    .pricing_plan .price-box {
        width: 300px;
        margin: 0 auto;
        padding: 50px 20px 25px;
    }

    .pricing_plan .price-box h2 {
        font-size: 40px;
    }

    .testimonial_section .prev {
        left: 10px;
    }

    .testimonial_section .next {
        right: 10px;
    }
}


@media(max-width: 360px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .pricing_plan .price-box {
        width: 100%;
    }
}