:root {
    --primary-color: #38386d;
    --secondary-color: #ffb400;
    --text-white: #ffffff;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    --button-colour: #c41c1c;
}

body {
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

#showPopup {
    color: #38386d;
    cursor: pointer;
}

.mask-image {
    width: var(--m-size);
    height: var(--m-size);
    background-color: var(--m-bg);

    -webkit-mask-image: var(--m-url);
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;

    mask-image: var(--m-url);
    mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;

    transition: 0.4s;
}

*:hover>.mask-image {
    background-color: var(--m-h-bg, var(--m-bg));
}

/* header section style  */


.header-section {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.logo-section a h1 {
    color: #103286;
    font-size: 24px;
}

.header-banner-text h6 {
    font-size: 25px;
    padding: 0;
    margin: 0;
}

.header-navlinks-section {
    background: var(--box-shadow);
}


.header-navlinks-section li {
    position: relative;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
}


.header-navlinks-section li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    /* position line below text */
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease-in-out;
}

/* Hover effect — expand line */
.header-navlinks-section li:hover::after {
    width: 100%;
}


.logo-section h1 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 40px;
}


/* Header */
.header-section {
    background-color: #fff;
    position: relative;
    z-index: 10;
}

/* Logo */
.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color, #000);
    margin: 0;
}

/* Nav links */
.header-navlinks li {
    list-style: none;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.3s;
}

.header-navlinks li:hover {
    color: var(--primary-color, #007bff);
}

/* Contact button - Premium Look */
.button {
    background: #f9fafb;
    border: none;
    padding: 12px 20px;
    border-radius: 999px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 2px solid #d1d5db;
}


.button:hover {
    transform: translateY(-2px);
}

.button .icon {
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

.contact-text {
    color: #000 !important;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* 📱 Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100vh;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: left 0.3s ease;
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-header h2 {
    font-size: 20px;
    margin: 0;
    color: var(--primary-color, #000);
}

.close-btn {
    font-size: 26px;
    cursor: pointer;
}

.mobile-menu li {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    color: #333;
}

.mobile-menu li:hover {
    color: var(--primary-color, #007bff);
}

/* Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 998;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

/* Mobile tweaks */
@media (max-width: 991px) {
    .logo-text {
        font-size: 20px;
    }

    .contact-text {
        display: none !important;
    }

    .button {
        background: transparent;
        padding: 6px;
        border: none;
    }

    .menu-icon svg {
        cursor: pointer;
    }
}

/* header end  */


/* botton-bar */


.bottom-bar {
    background-image: linear-gradient(to right, #25abf3, #12265b);
}


.bottom-bar-content {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 500;
}


/* bottom-bar-button  */

/* From Uiverse.io by vinodjangid07 */
.Documents-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    height: 45px;
    border: none;
    padding: 0px 19px;
    border-radius: 999px;
    background-color: var(--text-white);
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s;
}

.folderContainer {
    width: 40px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.fileBack {
    z-index: 1;
    width: 80%;
    height: auto;
}

.filePage {
    width: 50%;
    height: auto;
    position: absolute;
    z-index: 2;
    transition: all 0.3s ease-out;
}

.fileFront {
    width: 85%;
    height: auto;
    position: absolute;
    z-index: 3;
    opacity: 0.95;
    transform-origin: bottom;
    transition: all 0.3s ease-out;
}

.text {
    font-size: 15px;
}

.get-quote-btn {
    position: relative;
    z-index: 10;
    background: #f9fafb;
    /* padding: 12px 20px; */
    border-radius: 999px;
    cursor: pointer !important;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 2px solid #d1d5db;
    width: max-content;
    transition: .4s ease;
}

.get-quote-btn:hover {
    transform: translateY(-2px);
}

.Documents-btn:hover .filePage {
    transform: translateY(-5px);
}

.Documents-btn:hover {
    color: #fff;
}

.Documents-btn:active {
    transform: scale(0.95);
}

.Documents-btn:hover .fileFront {
    transform: rotateX(30deg);
}

.Documents-btn:hover .text {
    transform: translateY(-1px);
}


/* bottom-bar-end  */

.section-image {
    width: 100%;
    height: 60vh;
}

.section-image-bg-image {
    background: url(images/section-img/about-section.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 60vh;
}

.center-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;

}

.top-bar-line {
    border-top: 4px solid white;
    border-left: 4px solid white;
    border-right: 4px solid white;
    height: 25px;
    width: 100%;
    border-radius: 5px;
    /* background-color: #ffb400; */
}

.bottom-bar-line {
    border-bottom: 4px solid white;
    border-left: 4px solid white;
    border-right: 4px solid white;
    height: 25px;
    width: 100%;
    border-radius: 5px;
}

.center-text-section-points li {
    font-size: 35px;
    padding-right: 20px;
    font-weight: 700;
    text-shadow: 1px 1px 2px #000, 0 0 25px #1f4d6d, 0 0 5px #0090ff;
    color: #fff;
}

/* services  */

.sponsored-bg-img-container {
    position: relative;
    z-index: 10;
}


.service-section-main-container {
    box-shadow: var(--box-shadow);
    border-radius: 20px;
    transition: all .4s ease;
}

.service-bg-img-container {
    transition: all .4s ease;
}

.service-section-main-container:hover {
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
    border-radius: 20px;
    transition: tra all 0.4s ease;
}

/* Apply hover effect to .service-bg-img-container when .service-section-main-container is hovered */
.service-section-main-container:hover .service-bg-img-container {
    filter: brightness(1.2);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
    transform: scale(1.02);
}



/* link hover style  */

.services-quick-nav-links-container {
    transition: all .4s ease;
}


.services-quick-nav-links-container:hover {
    transform: translateX(5px);
}

.services-nav-link a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 400;
    cursor: pointer;
}

.services-nav-link p {
    position: relative;
    display: inline-block;
    color: inherit;
    transition: color 0.3s ease;
}

.services-nav-link p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    /* adjust underline position */
    width: 0;
    height: 1px;
    background-color: #0a58ca;
    transition: width 0.4s ease;
}

.services-nav-link:hover p::after {
    width: 100%;
}


/*link hover end  */
.services-heading-title {
    font-size: 25px;
}

.services-title-section h1 {
    color: var(--button-colour);
    font-weight: 700;
    font-size: 1.5em;
}

.services-heading-title p {
    font-size: .8em;
}

.services-title-section h1 span {
    color: var(--button-colour);
}

.services-sub-title h1 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 28px;
}

.service-bg-img-container {
    width: 100%;
    aspect-ratio: 1.4;
    box-shadow: var(--box-shadow);
    border-radius: 20px;
}

.service-bg-img {
    background: url(service-vivahaa/catering1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1.4;
    width: 98%;
    border-radius: 20px;
}


/* popup  */

.service-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 95%;
    max-width: 1300px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    z-index: 9999;
    display: none;
    height: 90%;
    max-height: 700px;
    overflow-y: scroll;
    scrollbar-width: thin;
}

.service-popup.active {
    display: block;
}

.close-popup {
    position: sticky;
    top: 2px;
    right: 10px;
    cursor: pointer;
}

/* about us section  */

.about-section {
    padding: 80px 80px;
    position: relative;
    background:
        linear-gradient(to bottom, rgba(33, 142, 210, 0.8), rgba(33, 142, 210, 0) 60%),
        url(services-box/bg-img.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.inner-main-box-section {
    position: relative;
    background: #ffffffd9;
    /* min-height: 500px; */
    width: 88%;
    border-radius: 60px;
}


.inner-main-box-section::after {
    position: absolute;
    content: '';
    border: 2px solid var(--primary-color);
    width: 100%;
    height: 100%;
    border-radius: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-49%, -52%);
}

.about-title-section h1 {
    color: var(--primary-color);
    font-size: 50px;
    font-weight: 700;
}

.services-title h4 {
    font-weight: 700;
    color: var(--primary-color);
}

.explore-more h6 {
    position: relative;
    color: var(--primary-color);
    font-size: 15px;
    z-index: 10;
}

.explore-section {
    cursor: pointer;
}

.services-box-container {
    position: relative;
    width: 100% !important;
    box-shadow: var(--box-shadow);
    border-radius: 15px;
}

.services-box-container::after {
    position: absolute;
    content: '';
    width: 100%;
    /* aspect-ratio: 1 !important; */
    height: 100%;
    border: 2px solid #14825e;
    top: 50%;
    left: 50%;
    border-radius: 15px;
    transform: translate(-46%, -54%);
}

.service-box {
    width: 100% !important;
    aspect-ratio: 2.1 !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    border-radius: 40px;
    border: 4px solid #23715a;
}

.web-design-title h6 {
    color: var(--primary-color);
    font-weight: 700;
}

.web-design-title-content p {
    font-size: 12px;
    color: var(--text-white);
}

.about-bg-section {
    width: 100% !important;
    aspect-ratio: 1 !important;
}

.about-us-img-section-bg {
    width: 100% !important;
    aspect-ratio: 1 !important;
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    box-shadow: var(--box-shadow);
    border-radius: 5px;
}

/* swiper style  */

.swiper-button-next {
    padding: 10px;
    background-color: var(--text-white);
    box-shadow: var(--box-shadow);
    border-radius: 50%;
    color: var(--primary-color) !important;
}

.swiper-button-prev {
    padding: 10px;
    background-color: var(--text-white);
    box-shadow: var(--box-shadow);
    border-radius: 50%;
    color: var(--primary-color) !important;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    left: 0;
    top: 90% !important;
    width: 100%;
}

/* Get Contacted Button */


/* Contact button - Premium Look */
.about-button {
    position: relative;
    z-index: 10;
    background: #f9fafb;
    padding: 12px 20px;
    border-radius: 999px;
    cursor: pointer !important;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 2px solid #d1d5db;
    width: max-content;
}


.about-button:hover {
    transform: translateY(-2px) !important;
}

.about-button .icon {
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

/* footer  */

.footer-quick-nav-links {
    color: #222222;
    font-weight: 500;
    font-size: 14px;
}

#footer-section h3 {
    font-size: 19px;
    color: var(--bg-color);
    font-weight: bold;
}




.footer-quick-nav-links-container {
    transition: all .4s ease;
}


.footer-quick-nav-links-container:hover {
    transform: translateX(5px);
}

.footer-nav-link a {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.footer-nav-link p {
    position: relative;
    display: inline-block;
    color: inherit;
    transition: color 0.3s ease;
}

.footer-nav-link p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    /* adjust underline position */
    width: 0;
    height: 1px;
    background-color: var(--bg-color);
    transition: width 0.4s ease;
}

.footer-nav-link:hover p::after {
    width: 100%;
}




.bottom-footer-link {
    color: #fff;
    font-size: 14px;
}

.svg-container {
    width: 43px;
    height: 43px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.svg-container svg {
    width: 28px;
    height: 28px;
}

.svg-container svg path {
    fill: #0a58ca;
    transition: fill 0.4s ease;
}

.svg-container:hover {
    background-color: #0a58ca;
}

.svg-container:hover svg path {
    fill: #fff;
}

/*phone responsive  */

@media (max-width: 767px) {


    .about-section {
        padding: 50px 0px;
    }


    .about-title-section h1 {
        color: var(--primary-color);
        font-size: 25px;
        font-weight: 500;
    }

    .services-title h4 {
        font-size: 16px;
        font-weight: 700;
        color: var(--primary-color);
    }

    .explore-more h6 {
        color: var(--primary-color);
        font-size: 10px;
    }

    /* Contact button - Premium Look */
    .about-button {
        position: relative;
        z-index: 10;
        background: #f9fafb;
        padding: 12px 20px;
        border-radius: 999px;
        cursor: pointer !important;
        transition: all 0.3s ease;
        box-shadow: var(--box-shadow);
        font-weight: 600;
        letter-spacing: 0.3px;
        border: 2px solid #d1d5db;
        transform: scale(.9);
        width: max-content;
    }

    .get-quote-btn {
        transform: scale(.9);
    }

    .about-button:hover {
        transform: translateY(-2px) !important;
    }

    .about-button .icon {
        filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
    }

    .inner-main-box-section {
        position: relative;
        background: #ffffffd9;
        width: 95%;
        border-radius: 20px;
    }

    .inner-main-box-section::after {
        position: absolute;
        content: '';
        border: 2px solid var(--primary-color);
        width: 100%;
        height: 100%;
        border-radius: 20px;
        top: 50%;
        left: 50%;
        transform: translate(-48%, -51%);
    }

    .services-box-container {
        position: relative;
        width: 100% !important;
        box-shadow: var(--box-shadow);
        border-radius: 15px;
        height: 100%;
        transform: scale(.7);
    }

    .services-box-container::after {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        border: 2px solid #14825e;
        top: 50%;
        left: 50%;
        border-radius: 15px;
        transform: translate(-46%, -54%);
    }

    .about-bg-section {
        width: 100% !important;
        aspect-ratio: 1 !important;
        /* transform: scale(0.5); */
    }

    .about-us-img-section-bg {
        width: 100% !important;
        aspect-ratio: 1 !important;
        background-position: center !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        box-shadow: var(--box-shadow);
        border-radius: 5px;
    }

    .services-title-section h1 {
        color: var(--primary-color);
        font-weight: 700;
        font-size: 20px;
    }

    .services-sub-title h1 {
        color: var(--primary-color);
        font-weight: 700;
        font-size: 20px;
    }


    .service-popup.active {
        display: block;
    }

}

/* tablet responsive  */

@media (min-width: 768px) and (max-width: 991px) {
    .about-title-section h1 {
        color: var(--primary-color);
        font-size: 20px;
        font-weight: 500;
    }

    .services-title h4 {
        font-size: 16px;
        font-weight: 700;
        color: var(--primary-color);
    }

    .explore-more h6 {
        color: var(--primary-color);
        font-size: 10px;
    }

    .about-bg-section {
        width: 100% !important;
        aspect-ratio: 1 !important;
        /* transform: scale(0.7); */
    }

    .about-us-img-section-bg {
        width: 100% !important;
        aspect-ratio: 1 !important;
        background-position: center !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        box-shadow: var(--box-shadow);
        border-radius: 5px;
    }

    .service-box {
        width: 100% !important;
        aspect-ratio: 1.5 !important;
        background-position: center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        border-radius: 40px;
        border: 4px solid #23715a;
    }

    .web-design-title h6 {
        font-size: 24px;
    }

    .web-design-title-content p {
        font-size: 20px;
    }

}


@media (min-width: 400px) and (max-width: 792px) {
    .service-box {
        width: 100% !important;
        background-position: center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        border-radius: 40px;
        border: 4px solid #23715a;
        aspect-ratio: 1.5 !important;
    }

    .web-design-title h6 {
        font-size: 28px;
    }

    .web-design-title-content p {
        font-size: 20px;
    }

    .services-title h4 {
        font-size: 20px;
    }

    .explore-more a h6 {
        font-size: 18px;
    }
}

@media (min-width: 800px) and (max-width: 1000px) {
    .services-box-container {
        position: relative;
        width: 100% !important;
        box-shadow: var(--box-shadow);
        border-radius: 15px;
        height: 100%;
        transform: scale(.7);
    }
}

/* tags */
.theme-btn {
    color: white;
    border-radius: 30px;
    isolation: isolate;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0);
    border: none;
    outline: none;
    padding: 10px 15px;
    background-color: #123486;
    transition: .5s;
    text-align: center;
}

.theme-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    left: 0;
    top: 0;
    background-color: #ee3f37;
    transform: translateX(-110%);
    transition: .5s;
}

.theme-btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    color: white;
}

.theme-btn:hover::before {
    transform: translate(0px);
}

@media (max-width: 552px) {
    .tag-height {
        max-height: 100px;
        overflow: hidden;
        transition: .5s;
    }

    .tag-height.active {
        max-height: 500px;
        overflow: visible;
    }

    .view-theme-btn {
        color: white;
        border-radius: 30px;
        isolation: isolate;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0);
        border: none;
        outline: none;
        padding: 6px 30px;
        background-color: hsl(0, 0%, 0%);
        /* background-color: hsl(217, 33%, 17%); */
        transition: .5s;

    }
}