
/*** Custom Color Variables Override ***/
:root {
    --bs-primary: rgb(199,81,192);
    --bs-primary-pink: rgb(238, 72, 210);
    --bs-primary-orange: rgb(255,203,112);
    --bs-primary-gradient: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(238, 72, 210) 100%);
    --bs-secondary: #5A5A5A;
    --bs-light: #FAF9F6;
    --bs-dark: #1A1A1A;
}

/*** Spinner ***/


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

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

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







/*** Fonts ***/
.font-playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-work-sans{
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


/*** Button ***/
.btn {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(238, 72, 210) 100%);
    border: none;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(238, 72, 210, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg,rgb(238, 72, 210) 0%,rgb(199,81,192) 50%,rgb(255,203,112) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(238, 72, 210, 0.4);
    color: #FFFFFF;
}

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

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

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

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

.btn-dark,
.btn-primary {
    margin: 10px;
}

.btn-primary::before,
.btn-primary::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-primary::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid rgb(238, 72, 210);
    border-right: 2px solid rgb(255,203,112);
}

.btn-primary::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid rgb(255,203,112);
    border-bottom: 2px solid rgb(238, 72, 210);
}

.btn-dark::before,
.btn-dark::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-dark::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-dark);
    border-right: 2px solid var(--bs-dark);
}

.btn-dark::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-dark);
    border-bottom: 2px solid var(--bs-dark);
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar .navbar-nav .nav-link {
    margin: 0 12px;
    padding: 8px 0;
    outline: none;
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    position: relative;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgb(255,203,112), rgb(199,81,192), rgb(238, 72, 210));
    transition: width 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgb(238, 72, 210) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

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

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn-primary {
    border-width: 2px;
    background: var(--bs-light);
}

.navbar .btn-primary:hover {
    background: var(--bs-primary);
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(135deg, #FAF9F6 0%, #F5F3F0 100%);
    background-image: url(../img/hero-bg.jpg);
    background-size: cover;
    background-position: center;
    max-height: 400px;
    overflow: hidden;
    position: relative;
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 249, 246, 0.85) 0%, rgba(245, 243, 240, 0.75) 100%);
    z-index: 1;
}

.hero-header > .container {
    position: relative;
    z-index: 2;
}

.hero-header .row {
    max-height: 400px;
}

.hero-header .header-carousel {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-header .header-carousel img {
    max-height: 400px;
    object-fit: contain;
    width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .hero-header {
        max-height: 300px;
    }
    
    .hero-header .row {
        max-height: 300px;
    }
    
    .hero-header .header-carousel img {
        max-height: 300px;
        object-fit: contain;
    }
}

@media (min-width: 992px) {
    .hero-header .container {
        max-width: 100% !important;
    }

    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.header-carousel .owl-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next{
    position: relative;
    margin-left: 2px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-dark);
    background: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(238, 72, 210) 100%);
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
}

.page-header {
    background: url(../img/page-header.jpg) center center no-repeat;
    background-size: contain;
}


/*** Service ***/
.service {
    background: linear-gradient(180deg, #FAF9F6 0%, #FFFFFF 100%);
    padding: 80px 0;
}

.service-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #FFFFFF;
    border-radius: 12px;
    margin: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(238, 72, 210, 0.15);
    border-color: rgb(238, 72, 210);
}

.service-item h3 {
    color: #1A1A1A;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-item:hover h3 {
    color: rgb(238, 72, 210);
}

@media (max-width: 768px) {
    .service .service-item {
        border: none !important;
        box-shadow: 0 0 45px rgba(0, 0, 0, .05);
        margin: 5px;
    }
}

@media (min-width: 992px) {
    .service .service-item.border-lg-end {
        border-right: 1px solid #dee2e6;
    }

    .service .service-item.border-lg-end-0 {
        border-right: none !important;
    }

    .service .service-item.border-lg-bottom-0 {
        border-bottom: none !important;
    }
}

.service .service-item .btn-primary {
    border-width: 2px;
    background: transparent;
    border-color: rgb(238, 72, 210);
    color: rgb(238, 72, 210);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service .service-item .btn-primary:hover {
    background: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(238, 72, 210) 100%);
    color: #FFFFFF;
    border-color: rgb(238, 72, 210);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 72, 210, 0.3);
}

.service .service-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 50%;
}


/*** Pricing ***/
.price .price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .05);
}


/*** Blog ***/
.blog .btn-dark {
    border-width: 2px;
    background: var(--bs-primary);
    color: var(--bs-dark);
}

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


/*** Gallery ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery .gallery-item img {
    transition: .5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .7);
    transition: .5s;
    z-index: 1;
}

.gallery .gallery-item:hover .gallery-icon {
    width: 100%;
    height: 100%;
}

.gallery .gallery-icon .btn {
    opacity: 0;
    transition: .5s;
}

.gallery .gallery-item:hover .gallery-icon .btn {
    opacity: 1;
    transition-delay: .5s;
}


/*** Team ***/
.team {
    position: relative;
}

.team::before {
    position: absolute;
    content: "";
    width: 200%;
    height: 200px;
    top: 50%;
    left: -50%;
    transform: translateY(-50%);
    margin-top: 1rem;
    background: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(238, 72, 210) 100%);
}

.team-item img {
    transition: .5s;
}
  
.team-item:hover img {
    transform: scale(1.2);
}
  
.team-overlay {
    position: absolute;
    padding: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    text-align: center;
    background: rgba(255, 255, 255, .5);
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-overlay {
    background: rgba(255, 255, 255, .9);
}

.team-overlay p {
    letter-spacing: 1px;
}

.team-overlay .btn-dark {
    border-width: 2px;
    color: var(--bs-dark);
    background: transparent;
}

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


/*** Testimonial ***/
.testimonial-carousel {
    padding: 40px 0;
}

.testimonial-carousel .owl-item {
    position: relative;
}

.testimonial-carousel .text-center {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF9F6 100%);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(238, 72, 210, 0.1);
}

.testimonial-carousel .text-center:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(238, 72, 210, 0.15);
}

.testimonial-carousel .owl-item::before {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .1;
}

.testimonial-carousel .owl-item img {
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.testimonial-carousel .owl-item,
.testimonial-carousel .owl-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item span {
    letter-spacing: 2px;
}

.testimonial-carousel .owl-item.center .bg-light {
    background: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(238, 72, 210) 100%) !important;
    border: 2px solid rgb(238, 72, 210);
}

.testimonial-carousel .owl-item.center .bg-light * {
    color: #1A1A1A !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #FFFFFF;
    background: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(238, 72, 210) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 72, 210, 0.3);
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(26, 26, 26, 0.4);
}


/*** Footer ***/
.footer {
    background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%) !important;
    border-top: 3px solid rgb(238, 72, 210);
}

@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: rgba(238, 72, 210, 0.2);
    }
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: rgb(238, 72, 210);
    letter-spacing: 1px;
    box-shadow: none;
    transform: translateX(5px);
}

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


/*** About Section ***/
.container-fluid.py-5 {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF9F6 100%);
}

.font-dancing-script.text-primary {
    color: rgb(238, 72, 210) !important;
    font-weight: 600;
}

.text-primary {
    color: rgb(238, 72, 210) !important;
}

/*** Popup Modal ***/
#popupModal .modal-content {
    border-radius: 0;
    overflow: hidden;
    max-height: 95vh;
    background-color: transparent;
    border: none;
}

#popupModal .modal-dialog {
    max-width: 90%;
    max-height: 95vh;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
}

#popupModal .modal-body {
    max-height: calc(95vh - 0px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    position: relative;
}

#popupModal .btn-close {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    opacity: 1 !important;
    transition: all 0.3s;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 11;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

#popupModal .btn-close:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

#popupModal .modal-body img {
    display: block;
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    #popupModal .modal-dialog {
        max-width: 95%;
    }
    
    #popupModal .modal-content {
        max-height: 90vh;
    }
    
    #popupModal .modal-body {
        max-height: 90vh;
    }
    
    #popupModal .modal-body img {
        max-height: 90vh;
    }
    
    #popupModal .btn-close {
        width: 35px;
        height: 35px;
    }
}

.aboutUS{
    background: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(238, 72, 210) 100%)
    !important;
}