/*@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');
/* ========================= */
/* ROOT VARIABLES */
/* ========================= */


:root {

    /* Main Theme Color */
    /*    --primary-color:#c5a46d;*/
    --primary-color: #97006f;
    --primary-color-rgb: 151, 0, 111;
    --primary-light: #fdf2fa;
    /* Secondary Colors */
    --dark-color: #3c2f25;
    --dark-bg: #4a3428;
    --white-color: #ffffff;
    --text-color: #7c7c7c;

    /* Border */
    --border-color: #e8e2da;

    /* Font */
    /*    --main-font:"Space Grotesk", sans-serif;*/
    --main-font: "Quicksand", sans-serif;
    ;

    /* Transition */
    --transition: 0.35s ease;
}

/* Theme Utilities */
.text-primary,
.hp-text-theme {
    color: var(--primary-color) !important;
}

.bg-primary,
.hp-bg-theme {
    background-color: var(--primary-color) !important;
}

.border-primary,
.hp-border-theme {
    border-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background-color: #7a005a !important;
    border-color: #7a005a !important;
}




/* ========================= */
/* GLOBAL CSS */
/* ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--main-font);
}

a {
    text-decoration: none !important;
}

ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style-type: none;
}

input {
    width: 100%;
    outline: none;
}

body {
    overflow-x: hidden;
}

/* ========================= */
/* HEADER */
/* ========================= */
/* ========================= */
/* HEADER */
/* ========================= */

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 18px 0;
}

.main-header .container {
    max-width: 100%;
    padding: 0 18px;
}

.main-header .navbar {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ========================= */
/* LOGO AREA */
/* ========================= */

.logo-wrapper {
    position: relative;
    z-index: 1001;
    width: 102px;
}

/* LOGO BOX */

.logo-box {
    position: relative;

    width: 180px;
    height: 120px;

    background: #fff;

    border-bottom-right-radius: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 28px;

    left: -8px;
    bottom: 8px;

    overflow: visible;

    transition: 0.4s ease;
}

/* LOGO IMAGE */

.logo-box img {
    width: 100px;
    object-fit: contain;

    display: block;
    margin: auto;
}

/* ========================= */
/* SVG CORNERS */
/* ========================= */

.sticky-corner {
    position: absolute;

    width: 22px;
    height: 22px;

    line-height: 0;
}

/* TOP RIGHT */

.top-right-corner {
    top: 0;
    right: -22px;

    transform: rotate(-180deg);
}

/* BOTTOM LEFT */

.bottom-left-corner {
    left: 0;
    bottom: -22px;

    transform: rotate(-180deg);
}

/* SVG */

.sticky-corner svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ========================= */
/* MENU */
/* ========================= */

.navbar-collapse {
    justify-content: center;
    transition: 0.4s ease;
}

.navbar-nav {
    gap: 34px;
}

.nav-link {
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    transition: 0.35s ease;
}

.nav-link:hover {
    color: var(--white-color) !important;
}

/* UNDERLINE */

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: white;
    transition: 0.35s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ========================= */
/* DROPDOWN */
/* ========================= */

.dropdown-menu {
    background: rgba(0, 0, 0, 0.96);
    border: none;
    border-radius: 18px;
    padding: 14px 0;
    margin-top: 16px;
}

.dropdown-item {
    color: #fff;
    font-size: 15px;
    padding: 12px 22px;
    transition: 0.35s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #c5a46d;
    padding-left: 28px;
}

/* ========================= */
/* BUTTON */
/* ========================= */

.getButon {
    background: #fff;
    border: none;
    outline: none;

    height: 52px;

    padding: 0 28px;

    border-radius: 12px;

    font-size: 15px;
    font-weight: 700;

    white-space: nowrap;
    position: relative;
    right: 62px;
    transition: 0.35s ease;
}

.getButon:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ========================= */
/* TOGGLE */
/* ========================= */

.navbar-toggler {
    width: 50px;
    height: 50px;

    border: none !important;
    outline: none !important;
    box-shadow: none !important;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.15);

    display: none;

    align-items: center;
    justify-content: center;

    transition: 0.35s ease;

    z-index: 1002;
}

.navbar-toggler:hover {
    background: #c5a46d;
}

/* ========================= */
/* OVERLAY */
/* ========================= */

.mobile-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.55);

    opacity: 0;
    visibility: hidden;

    transition: 0.4s ease;

    z-index: 998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

header .nav-link {
    font-weight: 600;
}

/* ========================= */
/* DROPDOWN */
/* ========================= */

.navbar-nav .dropdown {
    position: relative;
}

.navbar-nav .dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    min-width: 240px;
    padding: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);

    /* ADD BORDER */
    border: 1px solid rgba(255, 255, 255, 0.12);

    /*    border-radius:18px;*/



    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: all var(--transition);

    display: block;

    /* OPTIONAL SHADOW */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* SHOW DROPDOWN */

.navbar-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* DROPDOWN ITEMS */

.navbar-nav .dropdown-menu .dropdown-item {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;

    padding: 12px 22px;

    transition: var(--transition);

    background: transparent;

    /* ITEM BORDER */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* REMOVE LAST BORDER */

.navbar-nav .dropdown-menu li:last-child .dropdown-item {
    border-bottom: none;
}

/* HOVER */

.navbar-nav .dropdown-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-color);

    padding-left: 28px;
}

.navbar-nav .dropdown>.nav-link::before {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    transition: var(--transition);
}

.navbar-nav .dropdown:hover>.nav-link::before {
    transform: translateY(-50%) rotate(180deg);
}

.navbar-expand-lg .navbar-nav {
    gap: 33px !important;
}

/* ========================= */
/* MOBILE TOGGLE */
/* ========================= */

.navbar-toggler {
    display: none;
}

@media(max-width:1316px) {

    .navbar-toggler {
        display: flex !important;
        align-items: center;
        justify-content: center;

        width: 48px;
        height: 48px;

        border: none;
        border-radius: 10px;

        background: rgba(255, 255, 255, 0.12);

        color: #fff;

        font-size: 18px;

        z-index: 9999;
    }

    /* HIDE DESKTOP MENU */

    .navbar-collapse {
        display: none !important;
    }

    .getButon {
        display: none;
    }
}

/* ========================= */
/* MOBILE OVERLAY */
/* ========================= */

.mobile-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.6);

    opacity: 0;
    visibility: hidden;

    transition: 0.4s ease;

    z-index: 9998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================= */
/* MOBILE SIDEBAR */
/* ========================= */

.mobile-sidebar {
    position: fixed;

    top: 0;
    left: -320px;

    width: 300px;
    height: 100vh;

    background: #111;

    z-index: 9999;

    padding: 90px 24px 40px;

    overflow-y: auto;

    transition: 0.45s ease;
}

.mobile-sidebar.active {
    left: 0;
}

/* CLOSE BUTTON */

.sidebar-close {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.08);

    color: #fff;

    font-size: 18px;
}

/* MENU */

.mobile-menu {
    padding: 0;
    margin: 0;

    list-style: none;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu li a {
    color: #fff;

    text-decoration: none;

    display: block;

    padding: 16px 0;

    font-size: 16px;
    font-weight: 500;
}

/* ========================= */
/* DROPDOWN */
/* ========================= */

.mobile-dropdown-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;
}

.dropdown-icon {
    color: #fff;

    font-size: 24px;
    font-weight: 400;

    transition: 0.35s ease;
}

/* ACTIVE ICON */

.mobile-dropdown.active .dropdown-icon {
    transform: rotate(45deg);
    color: #c5a46d;
}

/* SUBMENU */

.mobile-submenu {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;

    padding-left: 14px;
}

.mobile-submenu li {
    border: none;
}

.mobile-submenu li a {
    color: #cfcfcf;

    font-size: 14px;

    padding: 10px 0;
}

/* ACTIVE */

.mobile-dropdown.active .mobile-submenu {
    max-height: 500px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(min-width:1317px) {

    .mobile-sidebar,
    .mobile-overlay {
        display: none !important;
    }
}

@media(max-width:576px) {

    .mobile-sidebar {
        width: 280px;
        left: -280px;
    }
}

/* ========================= */
/* HERO */
/* ========================= */

.hero-slider {
    /*    width:100%;*/
    margin: 10px 10px 0;
    border-radius: 12px;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.heroSwiper,
.swiper-wrapper,
.swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: 8s ease;
}

.swiper-slide-active .hero-image img {
    transform: scale(1.12);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text-wrap {
    max-width: 780px;
    text-align: center;
    margin: auto;
    padding-top: 3em;
}

.hero-subtitle {
    /* color:#b57b7b; */
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease;
}

.hero-title {
    color: var(--white-color);
    font-size: 55px !important;
    line-height: 1.8;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(70px);
    transition: 1.2s ease;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.6;
    max-width: 650px;
    margin: auto;
    margin-bottom: 45px;
    opacity: 0;
    transform: translateY(50px);
    transition: 1.4s ease;
}

.hero-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 60px;
    background: var(--primary-color);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(50px);
}

.hero-main-btn:hover {
    background: var(--white-color);
    transform: translateY(-4px);
}

.swiper-slide-active .hero-subtitle,
.swiper-slide-active .hero-title,
.swiper-slide-active .hero-desc,
.swiper-slide-active .hero-main-btn {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active .hero-subtitle {
    transition-delay: 0.5s;
}

.swiper-slide-active .hero-title {
    transition-delay: 0.8s;
    line-height: 1.1;
}

.swiper-slide-active .hero-desc {
    transition-delay: 1.1s;
}

.swiper-slide-active .hero-main-btn {
    transition-delay: 1.4s;
}

/* ========================= */
/* PAGINATION */
/* ========================= */

.hero-pagination-wrap {
    position: absolute;
    left: 70px;
    bottom: 60px;
    z-index: 20;
}

.swiper-pagination {
    display: flex;
    align-items: center;
    gap: 14px;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    border-radius: 50%;
    transition: 0.4s ease;
}

.swiper-pagination-bullet-active {
    width: 48px;
    border-radius: 30px;
    background: var(--primary-color);
}

/* ========================= */
/* ABOUT */
/* ========================= */

.about-section {
    padding: 100px 0;
}

.about-image {
    position: relative;
    width: 100%;
    height: 530px;
    border-radius: 38px;
    overflow: hidden;
    background: url('../images/about.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.award-box {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 255px;
    height: 220px;
    background: var(--primary-color);
    border-top-left-radius: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 20;
}

.award-box::before {
    content: "";
    position: absolute;
    top: -43px;
    right: 0;
    width: 45px;
    height: 45px;
    background: #b3765800;
    ;
    border-bottom-right-radius: 45px;
    box-shadow: 12px 12px 0 var(--primary-color);
}

.award-box::after {
    content: "";
    position: absolute;
    left: -43px;
    bottom: 0;
    width: 45px;
    height: 45px;
    background: #b3765800;
    ;
    border-bottom-right-radius: 45px;
    box-shadow: 12px 12px 0 var(--primary-color);
}

.award-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 36px;
    margin-bottom: 18px;
}

.award-box h3 {
    color: var(--white-color);
    font-size: 21px;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
}

.x-about-content {
    padding-left: 20px;
}

.x-subtitle-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.x-subtitle-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
}

.x-subtitle-text {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.x-about-title {
    font-size: 38px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 17px;
}

.x-about-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 29px;
}

.x-feature-box {
    height: 75px;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 80px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: 0.4s ease;
}

.x-feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.x-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #faf7f2;
    border: 1px solid #ece5dc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 28px;
    flex-shrink: 0;
}

.x-feature-box h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.x-author-wrap {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.x-author-name {
    color: var(--primary-color);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 5px;
}

.x-author-role {
    color: #777;
    font-size: 18px;
}

.x-signature {
    width: 220px;
}

/* ========================= */
/* COUNTER */
/* ========================= */

.counter-section {
    padding: 100px 0;
    /* overflow: hidden; */
    background: #c5a46d0d;
}

.counter-box {
    position: relative;
    transition: 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
}

.counter-box:hover {
    transform: translateY(-8px);
}

.counter-box.show {
    opacity: 1;
    transform: translateY(0);
}

.counter-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.counter-top i,
.counter-top span {
    color: var(--primary-color);
}

.counter-number {
    font-size: 47px;
    line-height: 1;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-color);
    display: flex;
    align-items: flex-start;
}

.counter-number small {
    font-size: 34px;
    margin-top: 10px;
    margin-left: 3px;
}

/* ========================= */
/* SERVICE */
/* ========================= */

.service-section {
    padding: 80px 20px;
    position: relative;
    background: var(--primary-color);
    overflow: hidden;
    border-radius: 32px;
    margin: 0 22px;
    /* transition:
        margin 0.5s ease,
        border-radius 0.5s ease; */
}

.service-section.scrolled {
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0 !important;
}

.bg-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 180px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
    z-index: 0;
    user-select: none;
    white-space: nowrap;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-header span {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-header span::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.section-header h2 {
    color: var(--white-color);
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

/* Paragraph Style */
.service-card p {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: -120px;
    color: #fff;
    z-index: 2;
    opacity: 0;
    transition: 0.5s ease;
}

/* Show paragraph on hover */
.service-card:hover p {
    bottom: 90px;
    opacity: 1;
}

.service-card {
    height: 350px;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: 0.4s ease;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.08);
}

/* Show Overlay on Hover */
.service-card:hover .overlay {
    opacity: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.05));
}

.card-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-content h3 {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    max-width: 220px;
    line-height: 1.3;
}

.arrow-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--white-color);
    color: #5b4639;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.service-card:hover .arrow-btn {
    background: var(--primary-color) !important;
    color: var(--white-color) !important;
    transform: rotate(-45deg);
}

.swiper-pagination-bullet {
    background: var(--white-color) !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--primary-color) !important;
}



/* ========================= */
/* SECTION */
/* ========================= */

.why-choose-section {
    padding: 80px 0;

    overflow: hidden;

    position: relative;
}



/* ========================= */
/* TOP AREA */
/* ========================= */

.why-top {
    margin-bottom: 70px;
}

.mini-title {
    color: var(--primary-color);

    font-size: 16px;
    font-weight: 600;

    text-transform: uppercase;

    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 6px;
}

.mini-title::before {
    content: "";

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--primary-color);
}

.main-title {
    font-size: 37px;
    line-height: 1.1;

    color: #3c2f25;

    font-weight: 700;
}

.top-desc {
    font-size: 17px;
    line-height: 1.6;

    color: #8a8a8a;
    margin-top: 12px;
    width: 100%;
}



/* ========================= */
/* BUTTON */
/* ========================= */

.consult-btn {
    width: 240px;
    height: 70px;
    border: 1px solid #d7cec2;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 35px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    overflow: hidden;
    background: #fff;
}

.consult-btn span {
    width: 70px;
    height: 70px;

    background: var(--primary-color);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 28px;
}




/* ========================= */
/* FEATURE BOX */
/* ========================= */

.feature-box {
    display: flex;

    gap: 25px;

    margin-bottom: 60px;
}

.feature-icon i {
    font-size: 22px;
}

.feature-icon {
    width: 65px;
    height: 65px;

    min-width: 65px;

    border-radius: 50%;

    background: var(--primary-color);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 38px;
}

.feature-content h3 {
    font-size: 24px;
    line-height: 1.2;

    color: #3c2f25;

    font-weight: 700;

    margin-bottom: 12px;
}


/* =========================
   FEATURE IMAGE WRAPPER
========================= */

.feature-image-wrapper {
    position: relative;
    padding: 0 40px 40px 0;
    height: 100%;
    min-height: 550px;
}

.main-feature-img {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.main-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-image-wrapper:hover .main-feature-img img {
    transform: scale(1.05);
}

.overlap-feature-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
    height: 220px;
    border: 10px solid #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: transform 0.4s ease;
}

.overlap-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlap-feature-img:hover {
    transform: translateY(-10px) scale(1.05);
}

@media (max-width: 991px) {
    .feature-image-wrapper {
        min-height: 400px;
        margin-bottom: 50px;
    }

    .overlap-feature-img {
        width: 160px;
        height: 160px;
    }

    .client-logo-item img {

        filter: unset !important;
        opacity: 1 !important;

    }
}



.feature-content p {
    font-size: 17px;
    line-height: 1.4;

    color: #7c7c7c;

    margin: 0;
}



/* ========================= */
/* CENTER IMAGE */
/* ========================= */

.center-circle {
    /* position: relative; */
    /* width: 222px; */
    height: 392px;
    /* border: 2px solid #d9c8aa; */
    border-radius: 50%;
    /* margin: auto; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
}

.inner-circle {
    /* width: 222px; */
    /* height: 232px; */
    /* border-radius: 50%; */
    /* background: #efefef; */
    overflow: hidden;
    /* display: flex; */
    align-items: center;
    justify-content: center;
}

.inner-circle img {
    width: 100%;
    border-radius: 12px;

    object-fit: contain;
}



/* =========================
   PRODUCTS CSS
========================= */

.prodcts_wrapper {
    padding: 80px 0;
    background: #f6f6f6;
}

/* FILTER BUTTONS */

.buttons_procuts {
    /* display: flex;
    align-items: center;
    justify-content: center; */
    /* flex-wrap: wrap; */
    gap: 14px;
}

.buttons_procuts button {
    border: none;
    background: #fff;
    height: 56px;
    padding: 0 28px;
    border-radius: 40px;
    color: #3c2f25;
    font-size: 16px;
    font-weight: 500;
    transition: 0.4s ease;
}

.buttons_procuts button sup {
    color: var(--primary-color);
}

.buttons_procuts button:hover,
.buttons_procuts .activebutton {
    background: var(--primary-color);
    color: #fff;
}

.buttons_procuts .activebutton sup {
    color: #fff;
}

/* GALLERY */

.gallery-wrapper {
    margin-top: 70px;
}

/* CARD */

.gallery-card {
    position: relative;
    height: 273px;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;

    transform: scale(1);
    opacity: 1;

    transition: 0.5s ease;
}

/* HIDE */

.gallery-item.hide {
    display: none;
}

/* IMAGE */

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}

/* HOVER */

.gallery-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* CLICK EFFECT */

.gallery-card img:active {
    transform: scale(0.95);
}


.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: 0.5s ease;
    z-index: 5;
}


.gallery-plus-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: 0.4s ease;
    opacity: 0;
    transform: translateY(-10px);
    z-index: 10;
}

.gallery-card:hover .gallery-overlay,
.gallery-card:hover .gallery-plus-icon {
    opacity: 1;
}

.gallery-card:hover .gallery-plus-icon {
    transform: translateY(0);
}



/* CONTENT */

.gallery-content {
    transform: translateY(30px);
    transition: 0.5s ease;
}

.gallery-card:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h3 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-content span {
    color: #fff;
    opacity: 0.8;
    font-size: 18px;
}

/* =========================
   LIGHTBOX
========================= */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #000000ad !important;
    /*    backdrop-filter:blur(10px);*/

    opacity: 0;
    visibility: hidden;

    transition: 0.5s ease;

    z-index: 999999;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.92);
}

/* IMAGE */

.lightbox-image {
    max-width: 85%;
    max-height: 80vh;

    border-radius: 20px;

    transform: scale(0.7);
    opacity: 0;

    transition: 0.5s ease;
    aspect-ratio: 3 / 2;
    width: 700px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox.active .lightbox-image {
    transform: scale(1);
    opacity: 1;
}

/* BUTTONS */

.close-btn,
.prev-btn,
.next-btn {
    position: absolute;
    color: #fff;
    cursor: pointer;
    z-index: 9;
    user-select: none;
}

/* CLOSE */

.close-btn {
    top: 20px;
    right: 30px;

    font-size: 55px;

    transition: 0.3s ease;
}

.close-btn:hover {
    transform: rotate(180deg);
}

/* PREV NEXT */

.prev-btn,
.next-btn {
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.prev-btn:hover,
.next-btn:hover {
    transform: translateY(-50%) scale(1.2);
}

/* COUNTER */

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    color: #fff;
    font-size: 16px;
}

/* THUMBNAILS */

.lightbox-thumbnails {
    position: absolute;
    display: none !important;
    bottom: 60px;

    display: flex;
    gap: 10px;

    width: 90%;

    /*    overflow:auto;*/

    justify-content: center;
}

.lightbox-thumbnails img {
    width: 80px;
    height: 60px;

    object-fit: cover;

    border-radius: 10px;

    cursor: pointer;

    opacity: 0.5;

    border: 2px solid transparent;

    transition: 0.3s ease;
}

.lightbox-thumbnails img.active-thumb {
    opacity: 1;
    border-color: #c5a46d;
    transform: scale(1.1);
}

/* RESPONSIVE */

@media(max-width:991px) {

    .gallery-card {
        height: 240px;
    }

}

/* IMPORTANT FIX */

.gallery-overlay {
    pointer-events: none;
}

.gallery-card img {
    position: relative;
    z-index: 2;
}

@media(max-width:767px) {

    .gallery-card {
        height: 220px;
    }

    .gallery-content h3 {
        font-size: 24px;
    }

}



.packegs_boxex {
    border-radius: 40px;
    border: 1px solid #f0f0f0;
    padding: 50px 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.packegs_boxex:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.activepackegs {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 20px 60px rgba(151, 0, 111, 0.25) !important;
}

.activepackegs .mini-title {
    color: #fff !important;
    font-weight: 700;
    letter-spacing: 1.5px;
    justify-content: center;
    margin-bottom: 12px;
}

.activepackegs .mini-title::before {
    background: #fff !important;
}

.activepackegs .main-title {
    color: #fff !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 30px !important;
}

.activepackegs p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.activepackegs .icons_packesSecond a {
    color: #fff !important;
    font-weight: 500;
}

.activepackegs .icons_packesSecond a i {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.activepackegs .consult-btn {
    background: #fff !important;
    color: var(--primary-color) !important;
    /* border: none !important; */
    width: 100%;
}

.activepackegs .consult-btn span {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.packesPurchaseButoon {
    display: flex;
    /* flex-direction: column; */
    gap: 15px;
}

.packesPurchaseButoon button {
    height: 55px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.secondwhatssbutton {
    background: #25d366 !important;
    color: #fff !important;
    border: none !important;
}

.thiedbutton {
    background: #25d366 !important;
    color: #fff !important;
    border: none !important;
}

.second_packegBox {
    padding: 0;
    /* reset */
}

.icons_packesSecond {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 3em;
}

.icons_packesSecond a {
    color: black;

}

.icons_packesSecond a i {
    margin-right: 7px;
    color: var(--primary-color);
}



/* ========================= */
/* TESTIMONIAL SECTION */
/* ========================= */

.testimonials-section {
    padding: 80px 0;
    background: #c5a46d0d;
    overflow: hidden;

    position: relative;
}



/* ========================= */
/* HEADING */
/* ========================= */

.testimonial-mini-title {
    color: var(--primary-color);

    font-size: 15px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-bottom: 18px;
}

.testimonial-mini-title::before {
    content: "";

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--primary-color);
}

.testimonial-title {
    font-size: 58px;
    line-height: 1.1;

    font-weight: 700;

    color: #3b2e24;

    text-align: center;

    margin-bottom: 70px;
}



/* ========================= */
/* SWIPER */
/* ========================= */

.testimonialsSwiper {
    padding-bottom: 70px;
}



/* ========================= */
/* CARD */
/* ========================= */

.testimonial-card {
    background: #fff;

    border-radius: 30px;

    padding: 40px 35px;

    height: 100%;

    position: relative;

    transition: 0.4s ease;

    border: 1px solid #ece6de;
}

.testimonial-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}



/* QUOTE */

.quote-icon {
    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: var(--primary-color);

    color: #fff;

    display: flex !important;
    align-items: center;
    justify-content: center !important;

    font-size: 28px !important;

    margin-bottom: 30px !important;
}



/* TEXT */

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;

    color: #7b7b7b;

    margin-bottom: 35px;
}



/* USER */

.testimonial-user {
    display: flex;
    align-items: center;

    gap: 16px;
}

.testimonial-user img {
    width: 70px;
    height: 70px;

    border-radius: 50%;

    object-fit: cover;
}

.testimonial-user h4 {
    font-size: 22px;
    font-weight: 700;

    color: #3b2e24;

    margin-bottom: 5px;
}

.testimonial-user span {
    color: var(--primary-color);

    font-size: 15px;
    font-weight: 500;
}



/* STARS */

.testimonial-stars {
    margin-top: 18px;

    color: #ffb400;

    font-size: 15px;

    display: flex;
    gap: 4px;
}



/* ========================= */
/* PAGINATION */
/* ========================= */

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;

    background: #c5a46d !important;

    opacity: 0.4 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;

    width: 30px !important;

    border-radius: 30px !important;
}

/* ========================= */
/* PAGINATION FIX */
/* ========================= */

.testimonialsSwiper .swiper-pagination {
    position: relative !important;

    margin-top: 40px;

    bottom: 0 !important;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;
}



/* BULLETS */

.testimonialsSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;

    background: #d8c7a7;

    opacity: 1;

    transition: 0.4s ease;

    border-radius: 50%;
}



/* ACTIVE BULLET */

.testimonialsSwiper .swiper-pagination-bullet-active {
    width: 28px;

    border-radius: 30px;

    background: var(--primary-color) !important;
}






/* ========================= */
/* CLIENT SECTION */
/* ========================= */

.client-logo-section {
    padding: 40px 0;

    background: #f3f3f3;

    overflow: hidden;
}



/* ========================= */
/* HEADING */
/* ========================= */

.client-heading {
    text-align: center;

    margin-bottom: 70px;
}

.client-mini-title {
    color: var(--primary-color);

    font-size: 15px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 16px;
}

.client-mini-title::before {
    content: "";

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--primary-color);
}

.client-title {
    font-size: 58px;
    line-height: 1.1;

    color: var(--dark-color);

    font-weight: 700;
}



/* ========================= */
/* LOGO ITEM */
/* ========================= */

.client-logo-item {
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}



/* LOGO */


.client-logo-item img {
    max-width: 90%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s ease;
}



/* HOVER EFFECT */


.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-5px);
}













/* ========================= */
/* VIDEO SECTION */
/* ========================= */

.creative-video-section {
    position: relative;

    min-height: 850px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: url('../images/bg-img.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-attachment: fixed;
}



/* OVERLAY */

.creative-video-section::before {
    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.55);

    z-index: 1;
}



/* CONTENT */

.creative-video-content {
    position: relative;

    z-index: 5;

    text-align: center;

    max-width: 900px;

    padding: 0 20px;
}



/* SMALL TEXT */

.creative-subtitle {
    color: #fff;

    font-size: 16px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 25px;
}



/* TITLE */

.creative-title {
    font-size: 55px;
    line-height: 1.1;

    color: var(--white-color);

    font-weight: 700;

    margin-bottom: 45px;
}



/* ========================= */
/* PLAY BUTTON */
/* ========================= */

.video-play-wrapper {
    position: relative;

    width: 120px;
    height: 120px;

    margin: auto;
}



/* WAVES */

.video-wave {
    position: absolute;

    inset: 0;

    border-radius: 50%;

    border: 2px solid rgba(255, 255, 255, 0.4);

    animation: waveAnimation 2.5s linear infinite;
}

.video-wave.wave2 {
    animation-delay: 1s;
}

.video-wave.wave3 {
    animation-delay: 2s;
}



/* PLAY BUTTON */

.video-play-btn {
    position: relative;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: var(--primary-color);

    color: var(--white-color);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;

    text-decoration: none;

    transition: var(--transition);

    z-index: 10;
}

.video-play-btn:hover {
    transform: scale(1.08);

    background: var(--white-color);

    color: var(--primary-color);
}



/* ========================= */
/* WAVE ANIMATION */
/* ========================= */

@keyframes waveAnimation {

    0% {
        transform: scale(1);

        opacity: 1;
    }

    100% {
        transform: scale(1.8);

        opacity: 0;
    }

}













/* ========================= */
/* BLOG SECTION */
/* ========================= */

.latest-blog-section {
    padding: 110px 0;

    overflow: hidden;
}



/* ========================= */
/* HEADING */
/* ========================= */

.blog-mini-title {
    color: var(--primary-color);

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;
}

.blog-mini-title::before {
    content: "";

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--primary-color);
}

.blog-title {
    font-size: 58px;
    line-height: 1.1;

    color: var(--dark-color);

    font-weight: 700;

    margin-bottom: 0;
}

.blog-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 820px;
    text-align: center;
}




/* =========================
   BLOG STYLES
========================= */

.blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #f2f2f2;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 18px;
    border-radius: 14px;
    text-align: center;
    line-height: 1;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(151, 0, 111, 0.3);
}

.blog-date span {
    display: block;
    font-size: 22px;
    font-weight: 800;
}

.blog-date small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-title {
    font-size: 24px !important;
    margin-bottom: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-card-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: 0.3s;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-text {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.blog-btn {
    width: 55px;
    height: 55px;
    background: #f8f8f8;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.4s;
    text-decoration: none;
}

.blog-card:hover .blog-btn {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(45deg);
}

/* Pagination */
.custom-pagination .page-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    margin: 0 6px;
    color: var(--dark-color);
    border: 1px solid #eee;
    font-weight: 600;
    transition: 0.3s;
}

.custom-pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Single Post */
.post-meta-details {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    color: #777;
    font-size: 15px;
    margin-bottom: 25px;
}

.post-meta-details i {
    color: var(--primary-color);
    margin-right: 8px;
}

.lead {
    font-size: 22px;
    color: #333;
    font-weight: 500;
    line-height: 1.6;
}

.custom-blockquote {
    border-left: 6px solid var(--primary-color);
    padding: 40px;
    background: #fdf8fb;
    font-size: 24px;
    font-style: italic;
    border-radius: 0 24px 24px 0;
    color: var(--dark-color);
    position: relative;
}

.custom-blockquote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 40px;
    opacity: 0.05;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    border: 1px solid #f2f2f2;
}

.widget-title {
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 18px;
    font-weight: 800;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.search-box {
    position: relative;
}

.search-box .form-control {
    padding: 16px 22px;
    border-radius: 14px;
    border: 1px solid #eee;
    font-size: 15px;
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    transition: 0.3s;
}

.search-btn:hover {
    background: #7a0059;
}

.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list li {
    margin-bottom: 18px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 15px;
}

.widget-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.widget-list li a {
    color: #555;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    transition: 0.3s;
}

.widget-list li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.widget-list li a span {
    color: #bbb;
    font-weight: 400;
}

.recent-post-item {
    display: flex;
    gap: 18px;
    align-items: center;
}

.rp-img {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.rp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rp-content a {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 8px;
    transition: 0.3s;
}

.rp-content a:hover {
    color: var(--primary-color);
}

.rp-content span {
    font-size: 13px;
    color: #999;
}




/*  footer css     */
.footer_wrapper {
    padding: 80px 0 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #7a0059 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.footer_wrapper > * {
    position: relative;
    z-index: 1;
}

/* Footer Brand Section */
.footer-brand-section {
    padding: 0 20px;
}

.footer-logo-box {
    margin-bottom: 25px;
}

.footer-logo-box img {
    max-width: 150px;
    transition: 0.3s ease;
}

.footer-logo-box:hover img {
    transform: scale(1.05);
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
       font-weight: 600;
}

.footer-social-section {
    /* margin-top: 30px; */
}

.footer-social-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}

.footer_links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.4s ease;
}

.social-link:hover {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
    transform: translateY(-4px);
}

/* Footer Menu Section */
.footer-menu-section {
    padding: 0 20px;
}

.footer-menu-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-menu-title i {
    font-size: 18px;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 14px;
}

.footer-menu-list li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.footer-menu-list li a:hover {
    color: #fff;
    transform: translateX(6px);
}

.link-icon {
    opacity: 0;
    transition: 0.3s ease;
}

.footer-menu-list li a:hover .link-icon {
    opacity: 1;
}

/* Footer Contact Section */
.footer-contact-section {
    padding: 0 20px;
}

.contact-info-box {
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.contact-content h5 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.contact-content a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-content a:hover {
    color: #fff;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
}

.footer-cta-btn:hover {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
    transform: translateX(4px);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0) 100%);
    margin: 0px 0 0;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 14px 0;
    margin-top: 0;
    font-weight: 600;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.copyright-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.copyright-text p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-bottom-links .divider {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-brand-section,
    .footer-menu-section,
    .footer-contact-section {
        padding: 20px 15px;
    }

    .footer-menu-title,
    .footer-menu-title {
        font-size: 14px;
    }

    .footer-menu-list li a {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .footer_wrapper {
        padding: 60px 0 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        width: 100%;
    }

    .footer-menu-title {
        margin-bottom: 18px;
    }

    .contact-info-box {
        margin-bottom: 20px;
    }

    .contact-item {
        margin-bottom: 18px;
        padding-bottom: 18px;
    }
}







.contact-page-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.contact-page-section .section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.contact-page-section .section-title {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--dark-color);
}

.contact-page-section .section-desc {
    color: var(--text);
    max-width: 720px;
    margin: auto;
    line-height: 1.85;
}

.address-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.address-card .address-label {
    display: inline-block;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.address-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.address-card p {
    color: var(--text);
    margin-bottom: 20px;
}

.contact-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    color: var(--text);
}

.contact-list li i {
    min-width: 24px;
    color: var(--primary-color);
    margin-top: 3px;
}

.map-frame {
    min-height: 260px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    overflow: hidden;
}

.enquiry-form {
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.enquiry-form h3 {
    color: var(--dark-color);
}

.enquiry-form p {
    color: var(--text);
}

.enquiry-form .form-control {
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 18px 16px;
}

.enquiry-form .btn-primary {
    border-radius: 14px;
    padding: 14px 30px;
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.enquiry-form .btn-primary:hover,
.enquiry-form .btn-primary:focus {
    background: #7a0059;
    border-color: #7a0059;
    color: var(--white-color);
}

@media(max-width:767px) {
    .address-card .contact-list li {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================
           HERO SECTION
        ========================= */

.hp-about-hero {
    margin: 10px 10px 0;
    border-radius: 12px;
    position: relative;

    height: 520px;

    overflow: hidden;
}

.hp-about-hero img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hp-hero-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.3));
}

.hp-hero-content {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 100%;

    text-align: center;

    color: #fff;

    padding: 0 20px;
}

.hp-hero-subtitle {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 40px;

    background: rgba(255, 255, 255, 0.12);

    font-size: 14px;

    margin-bottom: 20px;
}

.hp-hero-title {

    font-size: 52px;

    font-weight: 700;

    line-height: 1.2;

    margin-bottom: 18px;
}

.hp-hero-desc {

    max-width: 760px;

    margin: auto;

    font-size: 16px;

    line-height: 1.9;
}






/* =========================
           ABOUT SECTION
        ========================= */

.hp-about-section {

    padding: 80px 0;
}

.hp-about-image {

    position: relative;
}

.hp-about-image img {
    width: 100%;
    border-radius: 24px;

    height: 370px;

    object-fit: cover;
}

.hp-experience-card {

    position: absolute;

    left: 25px;
    bottom: 25px;

    background: var(--primary-color);

    padding: 24px 28px;

    border-radius: 20px;

    color: #fff;
}

.hp-experience-card h2 {

    font-size: 40px;

    margin-bottom: 5px;
}

.hp-section-subtitle {

    color: var(--primary-color);

    font-size: 15px;

    font-weight: 600;

    margin-bottom: 14px;
}

.hp-section-title {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.white-logo {
    filter: brightness(0) invert(1);
}

.hp-section-desc {

    font-size: 15px;

    line-height: 1.9;

    color: var(--text);

    margin-bottom: 18px;
}

.faq-section .accordion-item {
    border: 1px solid rgba(151, 0, 111, 0.18);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.faq-section .accordion-item:last-of-type {
    margin-bottom: 18px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.faq-accordion-button {
    background: rgba(151, 0, 111, 0.08);
    color: var(--dark-color);
    border: none;
    border-radius: 0;
    padding: 1.3rem 1.5rem;
    font-weight: 700;
    position: relative;
}

.faq-accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white-color);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
}

.faq-accordion-button::after {
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: 1px solid #97006f;
    margin-left: auto;
    content: "";
    background-color: rgba(255, 255, 255, 0.95);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='11' y='4' width='2' height='16' fill='%2397006f'/%3E%3Crect x='4' y='11' width='16' height='2' fill='%2397006f'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.2rem 1.2rem;
    transition: all .3s ease;
}

.faq-accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='11' width='16' height='2' fill='%23ffffff'/%3E%3C/svg%3E");
    background-color: #97006f;
    border-color: #97006f;
}

.faq-section .accordion-body {
    padding: 1.4rem 1.5rem 1.7rem;
    font-size: 15px;
    color: var(--text);
    background: #fff;
}

.hp-feature-box {

    display: flex;

    gap: 16px;

    padding: 22px;

    border-radius: 20px;

    background: var(--primary-light);

    margin-top: 20px;

    transition: 0.4s ease;
}

.hp-feature-box:hover {

    transform: translateY(-6px);

    background: var(--primary-color);
}

.hp-feature-box:hover h4,
.hp-feature-box:hover p,
.hp-feature-box:hover i {

    color: #fff;
}

.hp-feature-icon {

    min-width: 60px;
    height: 60px;

    border-radius: 16px;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary-color);

    font-size: 24px;
}

.hp-feature-content h4 {

    font-size: 20px;

    margin-bottom: 8px;
}

.hp-feature-content p {

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;

    margin: 0;

    transition: 0.4s ease;
}






/* =========================
           PROCESS SECTION
        ========================= */

.hp-process-section {

    padding: 80px 0;

    background: var(--primary-light);
}

.hp-process-card {

    position: relative;

    background: #fff;

    padding: 35px 25px;

    border-radius: 24px;

    text-align: center;

    height: 100%;

    transition: 0.4s ease;
}

.hp-process-card:hover {

    background: var(--primary-color);

    transform: translateY(-8px);
}

.hp-process-card:hover h3,
.hp-process-card:hover p,
.hp-process-card:hover i,
.hp-process-card:hover {

    color: var(--primary-color);
}

.hp-process-card:hover h3,
.hp-process-card:hover p,
.hp-process-card:hover .hp-process-number {

    color: #fff;
}

.hp-process-number {

    position: absolute;

    top: 18px;
    right: 20px;

    font-size: 50px;

    font-weight: 700;

    color: #eeeeee;
}

.hp-process-icon {

    width: 80px;
    height: 80px;

    margin: auto auto 22px;

    border-radius: 50%;

    background: var(--primary-light);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary-color);

    font-size: 30px;
}

.hp-process-card h3 {

    font-size: 24px;

    margin-bottom: 14px;
}

.hp-process-card p {

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}






/* =========================
           AWARD SECTION
        ========================= */

.hp-award-section {

    padding: 80px 0;
}

.hp-award-wrapper {

    background: var(--primary-color);

    border-radius: 34px;

    padding: 60px 50px;
}

.hp-award-title {

    color: #fff;
    font-size: 37px;
    line-height: 1.3;
    margin-bottom: 18px;
    font-weight: 800;
}

.hp-award-desc {

    color: rgba(255, 255, 255, 0.82);

    font-size: 15px;

    line-height: 1.9;
}

.hp-award-card {

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.14);

    border-radius: 24px;

    padding: 30px 25px;

    height: 100%;
}

.hp-award-card i {

    font-size: 38px;

    color: #fff;

    margin-bottom: 18px;
}

.hp-award-card h4 {

    color: #fff;

    font-size: 22px;

    margin-bottom: 12px;
}

.hp-award-card p {

    color: rgba(255, 255, 255, 0.8);

    font-size: 14px;

    line-height: 1.8;

    margin: 0;
}






/* =========================
   MODERN TEAM SECTION
========================= */

.modern-team-section {

    padding: 80px 0;

    background: #fafafa;
}

.modern-team-heading {

    max-width: 760px;

    margin: auto auto 60px;
}

.modern-team-heading span {

    color: var(--primary-color);

    font-size: 15px;

    font-weight: 600;

    display: inline-block;

    margin-bottom: 14px;
}

.modern-team-heading h2 {

    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;

    margin-bottom: 18px;

    color: #111;
}

.modern-team-heading p {

    color: #666;

    font-size: 15px;

    line-height: 1.9;
}

.hp-heading-box h2 {
    font-weight: 800;

}

.hp-heading-box {
    text-align: center;
}





/* CARD */

.modern-team-card {

    position: relative;


    transition: 0.4s ease;
}

.modern-team-card:hover {

    transform: translateY(-10px);
}





/* IMAGE */

.modern-team-image {

    width: 180px;
    height: 180px;

    border-radius: 50%;

    overflow: hidden;

    margin: auto;

    border: 8px solid #fff;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

    position: relative;

    z-index: 2;
}

.modern-team-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s ease;
}

.modern-team-card:hover img {

    transform: scale(1.08);
}





/* CONTENT */

.modern-team-content {

    background: rgba(255, 255, 255, 0.75);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.5);

    border-radius: 30px;

    padding: 110px 30px 35px;

    margin-top: -90px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);

    transition: 0.4s ease;
}

.modern-team-card:hover .modern-team-content {

    background: var(--primary-color);
}

.modern-team-card:hover h3,
.modern-team-card:hover span,
.modern-team-card:hover p {

    color: #fff;
}

.modern-team-content h3 {

    font-size: 26px;

    margin-bottom: 8px;

    transition: 0.4s ease;
}

.modern-team-content span {

    color: var(--primary-color);

    font-size: 14px;

    font-weight: 600;

    display: block;

    margin-bottom: 16px;

    transition: 0.4s ease;
}

.modern-team-content p {

    color: #666;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 24px;

    transition: 0.4s ease;
}





/* SOCIAL */

.modern-team-social {

    display: flex;

    justify-content: center;

    gap: 12px;
}

.modern-team-social a {

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: var(--primary-light);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary-color);

    font-size: 15px;

    transition: 0.4s ease;
}

.modern-team-card:hover .modern-team-social a {

    background: rgba(255, 255, 255, 0.15);

    color: #fff;
}

.modern-team-social a:hover {

    transform: translateY(-5px);
}


.hp-process-card.our_history_section:hover h4 {
  color: white !IMPORTANT;
}



/* =========================
           MISSION VISION SECTION
        ========================= */

.mv-section {

    padding: 80px 0;

    background: #fafafa;
}





/* HEADING */
.paddtingtip {
    padding-top: 1em;
}

.mv-heading {

    max-width: 760px;
    margin: 0 auto !important;
    /*            margin:auto auto 60px;*/
}

.mv-heading span {

    display: inline-block;

    color: var(--primary-color);

    font-size: 15px;

    font-weight: 600;

    margin-bottom: 14px;
}

.mv-heading h2 {

    font-size: 42px;
    font-weight: 800;
    color: var(--dark);



    line-height: 1.3;
}

.mv-heading p {

    color: var(--text);

    font-size: 15px;

    line-height: 1.9;
}






/* CARD */

.mv-card {

    position: relative;

    height: 100%;

    padding: 40px 35px;

    border-radius: 30px;

    background: #fff;

    overflow: hidden;

    transition: 0.4s ease;

    border: 1px solid #eeeeee;
}

.mv-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}





/* TOP LINE */

.mv-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 6px;

    background: var(--primary-color);
}





/* ICON */

.mv-icon {

    width: 85px;
    height: 85px;

    border-radius: 24px;

    background: var(--primary-light);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary-color);

    font-size: 34px;

    margin-bottom: 28px;
}





/* CONTENT */

.mv-content span {

    display: inline-block;

    color: var(--primary-color);

    font-size: 24px;

    font-weight: 600;

    margin-bottom: 12px;
}

.mv-content h3 {

    font-size: 32px;

    line-height: 1.3;

    margin-bottom: 18px;
    font-weight: 800;
    color: var(--dark-color);
}

.mv-content p {

    color: var(--text);

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 24px;
}





/* LIST */

.mv-content ul {

    padding: 0;

    margin: 0;

    list-style: none;
}

.mv-content ul li {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 14px;

    color: #444444;

    font-size: 15px;

    font-weight: 500;
}

.mv-content ul li i {

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: var(--primary-light);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary-color);

    font-size: 12px;
}





/* VISION CARD */

.vision-card {

    background: var(--primary-color);
}

.vision-card::before {

    background: #ffffff;
}

.vision-card .mv-icon {

    background: rgba(255, 255, 255, 0.12);

    color: #ffffff;
}

.vision-card span,
.vision-card h3,
.vision-card p,
.vision-card ul li {

    color: #ffffff;
}

.vision-card ul li i {

    background: rgba(255, 255, 255, 0.15);

    color: #ffffff;
}








/* FAQ Accordion Styling */
.faq-section .accordion-item {
    border: 1px solid #eee !important;
    border-radius: 20px !important;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.faq-section .faq-accordion-button {
    font-weight: 600;
    padding: 22px 25px;
    font-size: 18px;
    color: var(--dark-color);
    background-color: #fff;
    border-radius: 20px !important;
    transition: all 0.3s ease;
}

.faq-section .faq-accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-section .faq-accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: var(--primary-color);
    box-shadow: none;
}

.faq-section .faq-accordion-button::after {
    content: '+';
    background-image: none !important;
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 400;
    margin-left: auto;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.faq-section .faq-accordion-button:not(.collapsed)::after {
    content: '−';
    background-color: var(--primary-color);
    color: #fff;
    transform: rotate(180deg);
}


.faq-section .accordion-body {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* =========================
   GALLERY PAGE STYLES
========================= */

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.activebutton {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(151, 0, 111, 0.3);
}

.gallery-item {
    transition: 0.5s ease;
}

.gallery-item.hide {
    display: none;
}



.gallery-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    background: #f8f8f8;
}

/* =========================
   BRANDS SECTION STYLES
========================= */

.brands-section {
    background: #fff;
}

.brand-card {
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.brand-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.brand-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: 0.4s ease;
    /* filter: grayscale(1);
    opacity: 0.6; */
}

.brand-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@media(max-width: 767px) {
    .brand-card {
        height: 110px;
        padding: 12px;
    }
}


.blog-details-section .blog-sidebar {
    position: sticky;
    top: 10px;
}

/* =========================
   CREATIVE CONTENT IMAGE
========================= */

.content-image-wrapper {
    position: relative;
    max-width: 90%;
    margin: 60px auto;
}


.content-image {
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 1;
}

.content-image .main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.overlay-img-box {
    position: absolute;
    bottom: -40px;
    right: -5%;
    width: 250px;
    height: 250px;
    border: 10px solid #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: transform 0.4s ease;
}


.overlay-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-img-box:hover {
    transform: translateY(-10px) scale(1.05);
}

@media (max-width: 991px) {
    .content-image {
        width: 100%;
    }

    .overlay-img-box {
        width: 180px;
        height: 180px;
        right: 0;
        bottom: -20px;
        border-width: 6px;
    }
}


/* =========================
   PRODUCTS PAGE STYLES
========================= */

.product-category-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.product-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.p-card-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.p-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-category-card:hover .p-card-img img {
    transform: scale(1.1);
}

.p-card-content {
    padding: 30px;
    text-align: left;
}

.p-card-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.p-card-content p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

.p-card-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.p-card-link:hover {
    gap: 12px;
}

/* =========================
   PRODUCT DETAILS STYLES
========================= */

.portrait-img-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.portrait-img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.portrait-accent-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background: var(--primary-color);
    border-radius: 30px;
    z-index: 1;
    opacity: 0.1;
}

.product-features li {
    font-weight: 500;
    color: var(--dark-color);
}

.landscape-img-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
}

.landscape-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.landscape-label {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: #fff;
    padding: 25px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.landscape-label h4 {
    margin: 0;
    font-weight: 700;
    color: var(--dark-color);
}

.landscape-label span {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}


.land-content-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--primary-color) !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
}


.land-content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

.land-content-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.land-content-box p {
    font-size: 14px;
    line-height: 1.6;
}

/* =========================
   SIMPLE GALLERY
========================= */

.gallery-card-simple {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.gallery-card-simple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay-simple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-color-rgb), 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay-simple i {
    color: #fff;
    font-size: 24px;
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.gallery-card-simple:hover img {
    transform: scale(1.1);
}

.gallery-card-simple:hover .gallery-overlay-simple {
    opacity: 1;
}

.gallery-card-simple:hover .gallery-overlay-simple i {
    transform: scale(1);
}

@media (max-width: 767px) {
    .landscape-img {
        height: 300px;
    }

    .landscape-label {
        position: static;
        margin-top: -30px;
        margin-left: 20px;
        margin-right: 20px;
        padding: 20px;
    }
}

/* =========================
   BRAND CARD STYLES
========================= */

.brand-card {
    border: 1px solid var(--border-color);
    background: #fff;
    padding: 25px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border-radius: 4px;
    /* Square feel with slight softening */
}

.brand-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(var(--primary-color-rgb), 0.1);
    transform: translateY(-8px);
    z-index: 2;
}

.brand-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}



.brand-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}


/* =========================
   PREMIUM MOSAIC GALLERY
========================= */

.gallery-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 24px;
    background: #f8f9fa;
    height: 100% !important;
    /* Let grid control height */
}

/* Size Variations */
.gallery-size-lg {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-size-vert {
    grid-row: span 2;
}

.gallery-size-horiz {
    grid-column: span 2;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(var(--primary-color-rgb), 0.95) 0%, rgba(var(--primary-color-rgb), 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-plus-icon {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    width: 65px;
    height: 65px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-card:hover .gallery-plus-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gallery-content {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.gallery-card:hover .gallery-content {
    transform: translateY(0);
    opacity: 1;
}

.gallery-content h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-content span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

@media (max-width: 1199px) {
    .gallery-mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   LIGHTBOX DESIGN
========================= */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 80%;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.lightbox.active .lightbox-image {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--primary-color);
}

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}

.lightbox-counter {
    color: #fff;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
}

.lightbox-thumbnails {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.lightbox-thumbnails img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.lightbox-thumbnails img.active-thumb {
    opacity: 1;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

@media (max-width: 767px) {

    .prev-btn,
    .next-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .prev-btn {
        left: 15px;
    }

    .next-btn {
        right: 15px;
    }

    .lightbox-thumbnails {
        display: none;
    }
}

/* =========================
   CATEGORY SLIDER STYLES
========================= */

.category-slider-wrapper {
    margin: 40px 0;
}

.categorySwiper {
    padding: 10px 0;
}

.categorySwiper .swiper-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    /* Swiper handles spacing via slidesPerView/spaceBetween */
}

.categorySwiper .swiper-slide {
    width: auto !important;
}

/* Custom Navigation Buttons */
.category-next,
.category-prev {
    width: 45px !important;
    height: 45px !important;
    background: #fff !important;
    border: 1.5px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    top: 50% !important;
    /* transform: translateY(-50%) !important; */
}

.category-next::after,
.category-prev::after {
    display: none !important;
    /* Hide default Swiper icons */
}

.category-next:hover,
.category-prev:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(151, 0, 111, 0.3);
}

.category-next {
    right: 0 !important;
}

.category-prev {
    left: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .category-slider-wrapper {
        padding: 0 45px !important;
    }

    .category-next,
    .category-prev {
        width: 35px !important;
        height: 35px !important;
        font-size: 14px !important;
    }
}