@charset "utf-8";
.arrow-up,
.menu-bar ul {
    justify-content: center
}

.container,
.menu-bar,
header {
    width: 100%
}

.card,
.card .card-image,
.card .card-image img,
.card-btn,
.image-card,
.menu-bar .menu-icon,
.menu-bar .menu-icon .navbar,
.video-container {
    position: relative
}

.card,
.image-card,
.menu-bar,
.menu-bar ul {
    overflow: hidden
}

.card-content h2,
.headname,
.image-name,
.info-item,
.styled-arrow {
    font-weight: 700
}

body {
    font-family: "Times New Roman" sans-serif;
    margin-top: 60px;
    font-size: 17px;
    line-height: 26px;
    text-align: justify;
    background-color: #ffffff;
    user-select: none;
}

.bg-white {
    background-color: #ffffff !important
}

/* Optional overlay for better contrast */

.custom-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black */
    z-index: 1;
}

/* So your text sits above the overlay */

.custom-bg * {
    position: relative;
    z-index: 2;
}

a {
    color: #e05797;
    transition: .2s ease-in-out;
    text-decoration: none;
}

a:hover {
    transition: .2s linear
}

h1,
h2,
h3,
h5,
h6 {
    color: #560d74;
    margin: 10px 5px 10px;
    font-weight: 600;
    line-height: 1.2;
    font-size: 25px;
    text-align: center;
    font-family: "Times New Roman"
}

h4 {
    color: #e05797;
    margin: 10px 5px .5rem;
    font-weight: 600;
    line-height: 1.2;
    font-size: 20px;
    text-align: left;
    font-family: "Times New Roman"
}

.menu-bttn {
    display: none
}

::selection {
    color: #fff;
    background-color: #e05797
}

header {
    display: block;
    height: 60px;
    position: fixed;
    background: #0b151b;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 0;
    transition: box-shadow .3s
}

.menu-bar .logo {
    display: block;
    float: left;
    font-size: 2.5em;
    text-decoration: none;
    color: #b8b8b8;
    border: none;
    transition: transform .3s ease-in-out
}

.menu-bar .logo img {
    width: 180px;
    height: 45px;
    margin-top: 10px;
    margin-bottom: 5px
}

.menu-bar {
    height: auto;
    transition: background .3s ease-in-out
}

.menu-bar ul {
    margin: 0;
    list-style-type: none;
    padding: 0;
    display: flex
}

.menu-bar li {
    margin: 0 25px
}

.menu-bar li a {
    display: block;
    font-size: 1.2em;
    padding: 12px 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: .3s;
    border-radius: 8px;
    text-decoration: none
}

.menu-bar li a:hover {
    background: #444;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .3);
    transform: translateY(-2px)
}

.menu-bar .menu-icon {
    cursor: pointer;
    float: right;
    padding: 28px 20px;
    user-select: none;
    display: block
}

.menu-bar .menu-icon .navbar {
    background: #fff;
    display: block;
    height: 2px;
    transition: .2s ease-out;
    width: 32px
}

.menu-bar .menu-icon .navbar:after,
.menu-bar .menu-icon .navbar:before {
    background: #fff;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    transition: .2s ease-out;
    width: 100%
}

.menu-bar .menu-icon .navbar:before {
    top: 10px
}

.menu-bar .menu-icon .navbar:after {
    top: -10px
}

.menu-bar .menu-bttn:checked~.menu-icon .navbar {
    background: 0 0
}

.menu-bar .menu-bttn:checked~.menu-icon .navbar:before {
    transform: rotate(-45deg)
}

.menu-bar .menu-bttn:checked~.menu-icon .navbar:after {
    transform: rotate(45deg)
}

.menu-bar .menu-bttn:checked~.menu-icon:not(.steps) .navbar:after,
.menu-bar .menu-bttn:checked~.menu-icon:not(.steps) .navbar:before {
    top: 0
}

.menu-bar .menu-bttn:checked~.menu {
    max-height: 600px;
    background-color: #e05797c4;
}

.menu-bar .menu {
    clear: both;
    max-height: 0;
    transition: max-height .3s ease-in-out;
    display: table;
    border-radius: 15px;
    margin: 6px
}

@media (min-width:768px) {
    .menu-bar li {
        float: left
    }
    .menu-bar li a {
        padding: 10px 10px;
        font-size: 18px;
        color: #fff;
        text-shadow: 1px 1px 2px #000;
        transition: .3s
    }
    .menu-bar li a:hover {
        transform: translateY(-2px);
        background-color: #d13d80
    }
    .menu-bar .menu {
        clear: none;
        float: right;
        max-height: none
    }
    .menu-bar .menu-icon {
        display: none
    }
}

@media (max-width:1199px) {
    .container {
        width: 970px
    }
    .menu-bar li a {
        font-size: 16px;
        padding: 10px 15px;
        background: linear-gradient(to right, #d1457b, #e05797);
        box-shadow: 0 3px 5px rgba(0, 0, 0, .25);
        text-shadow: 1px 1px 1px #000
    }
}

@media (max-width:991px) {
    .container {
        width: 750px
    }
    .menu-bar li a {
        padding: 8px;
        background-color: #0e0d0d;
        font-size: 16px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, .5);
        text-shadow: 1px 1px 1px #000
    }
}

@media (max-width:767px) {
    .container {
        width: 100%
    }
    .menu-bar li {
        margin-bottom: 5px
    }
    .menu-bar li a {
        display: block;
        margin: 15px;
        background-color: #000;
        text-align: left;
        padding: 8px;
        font-size: 18px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, .6);
        text-shadow: 1px 1px 2px #111
    }
    .menu-bar .menu {
        display: block;
        transition: max-height .4s ease-in-out
    }
}

.card-content h2 {
    font-size: 18px;
    text-align: left;
    line-height: 1.2;
    color: #ffffff
}

.faq-container h2,
.price-table-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center
}

.card,
.info-item {
    border-radius: 7px
}

.info-box,
.info-item i {
    color: #e05797
}

.info-box {
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center
}

.info-item {
    background-color: #fff;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: .3s
}

.info-item:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .8);
    transform: translateY(-2px)
}

.card {
    margin: 2% 0px;
    background-color: #e05797;
    transition: box-shadow .25s;
    padding-right: 5px;
    border: 1px solid #e05797
}

.card .card-image img {
    display: block;
    border-radius: 2px 2px 0 0;
    left: 1px;
    right: 0;
    top: 1px;
    bottom: 0;
    width: 100px;
    height: 100px
}

.card.horizontal {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.faq-item.active .faq-content,
ul li a {
    display: block
}

.card.horizontal.large .card-image,
.card.horizontal.medium .card-image,
.card.horizontal.small .card-image {
    height: 100%;
    max-height: none;
    overflow: visible
}

.card.horizontal .card-image img {
    width: 130px;
    height: 240px;
    margin-right: 10px;
    border-radius: 0px;
}

.card.horizontal .card-stacked {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative
}

.card.horizontal .card-stacked .card-content {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.video-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 56.25%
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
}

.video-container1 video {
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
}

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

.image-card {
    border-radius: 15px
}

.image-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform .4s, box-shadow .4s
}

.image-name {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 1px
}

.image-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .5)
}

.faq-section {
    background-color: #f8f8f8
}

.faq-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 15px;
    background-color: #e05797;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
}

.faq-container h2 {
    font-weight: 700;
    color: #fff
}

.faq-item {
    margin-bottom: 12px
}

.faq-toggle {
    width: 100%;
    background-color: #fcebd3;
    color: #000000;
    padding: 18px;
    font-size: 1.2rem;
    border: none;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color .3s, transform .2s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.faq-toggle::after,
.tab {
    transition: transform .3s
}

.faq-toggle::after {
    content: '▼';
    font-size: 1.2rem
}

.faq-toggle:hover {
    background-color: #cbcbcb
}

.faq-item.active .faq-toggle::after {
    transform: rotate(180deg)
}

.faq-content {
    display: none;
    background-color: #ffffff;
    padding: 15px;
    margin-top: 2px;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #333;
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, .1)
}

.faq-item.active .faq-toggle {
    background-color: #fcebd3;
}

.price-table-section {
    padding: 10px;
    background-color: #fcebd3
}

.price-table-container {
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1)
}

.price-table-container h2 {
    color: #333
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 1rem
}

.price-table td,
.price-table th {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 1.1rem
}

.price-table th {
    background-color: #6e0e3b;
    color: #fff
}

.price-table tbody tr:nth-child(2n) {
    background-color: #f9f9f9
}

.price-table tbody tr:hover {
    background-color: #f1f1f1
}

.price-table td {
    color: #333
}

@media (max-width:600px) {
    .faq-container {
        padding: 10px
    }
    .faq-toggle {
        font-size: 1.1rem;
        padding: 14px
    }
    .price-table-container {
        padding: 5px
    }
    .price-table td,
    .price-table th {
        font-size: .9rem;
        padding: 10px
    }
}

.headname,
ul {
    padding: 10px
}

.tab-container {
    display: flex;
    flex-wrap: wrap;
    margin: 15px;
    justify-content: space-between
}

.tab {
    width: 32%;
    background-color: #fcebd3;
    max-height: 500px;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    margin-bottom: 20px;
    transform: perspective(1000px)
}

.headname {
    background: #6e0e3b;
    color: #fff;
    margin: 0 auto;
    font-size: 20px;
    text-align: left;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .925);
    position: sticky;
    top: 0;
    z-index: 1
}

.arrow-up,
.sticky-bar {
    position: fixed;
    display: flex
}

.styled-arrow {
    font-size: 20px;
    color: #e05797
}

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

ul li {
    margin-bottom: 8px;
    color: #e05797;
}

ul li a {
    text-decoration: none;
    color: #161616;
    font-size: 16px;
    transition: color .3s;
    padding: 5px 0
}

@media (max-width:768px) {
    .image-gallery {
        grid-template-columns: repeat(2, 1fr)
    }
    .image-card img {
        height: 300px
    }
    .tab-container {
        flex-direction: column
    }
    .tab {
        width: 100%
    }
}

.footer {
    background-color: #000
}

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

.footer .copyright a {
    color: #fff
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #fff
}

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

.arrow-up {
    width: 40px;
    height: 40px;
    background: linear-gradient(140deg, #d12576, #e05797);
    align-items: center;
    border-radius: 20%;
    border: 1px solid #fff;
    bottom: 70px;
    right: 20px;
    z-index: 999;
    cursor: pointer;
    transition: .4s;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .5), inset 0 0 10px rgba(255, 255, 255, .1)
}

.arrow-up::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border-top: 6px solid #fff;
    border-left: 6px solid #fff;
    transform: rotate(45deg)
}

.arrow-up:hover {
    background: linear-gradient(135deg, #ff1182, #000);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .7), inset 0 0 15px rgba(255, 255, 255, .2)
}

.arrow-up.show {
    opacity: 1;
    visibility: visible
}

.sticky-bar {
    bottom: 5px;
    left: 0;
    width: 100%;
    z-index: 9999;
    justify-content: center;
    padding: 0 auto
}

.sticky-bar-inner {
    background: #fff;
    border-radius: 10px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: 350px;
    width: 100%;
    justify-content: space-between;
    transition: box-shadow .3s
}

.call-button,
.whatsapp-button {
    height: 45px;
    width: 45px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    padding: 0;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .5);
    transition: .3s
}

.whatsapp-button {
    background: #0cbb4f
}

.call-button {
    background: #ff1182
}

.call-button:hover,
.whatsapp-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .527);
    color: #fff
}

.phone-number {
    font-size: 22px;
    font-weight: 600;
    color: #000
}

@media (max-width:500px) {
    .sticky-bar-inner {
        max-width: 90%;
        padding: 7px 5px
    }
}

/*  Contact Buttons  */

.contact-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 30px;
}

.contact-btn {
    display: flex;
    background: #fff;
    align-items: center;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    font-family: Arial, sans-serif;
    cursor: pointer;
    height: 30px;
    user-select: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.897);
    transition: 0.3s ease;
}

.contact-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.contact-btn .icon-part {
    background-color: #f8d7da;
    border-right: 1px solid rgba(151, 22, 22, 0.959);
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
    font-size: 13px;
}

.contact-btn .text-part {
    background-color: #fff;
    padding: 4px 8px;
    color: #900022;
    /* dark red text */
    font-weight: 700;
    font-size: 14px;
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-btn.phone-btn .icon-part i,
.contact-btn.phone-btn .text-part {
    color: #900022;
}

.contact-btn.whatsapp-btn .icon-part {
    background-color: #f8d7da;
    color: #25d366;
    /* WhatsApp green */
}

.contact-btn.whatsapp-btn .icon-part i {
    color: #900022;
}

.contact-btn.whatsapp-btn .text-part {
    color: #900022;
}

.contact-btn:hover .icon-part,
.contact-btn:hover .text-part {
    color: #be216c;
}

.contact-btn:hover .icon-part {
    background-color: #f5b3c1;
}

/* Responsive for smaller devices */

@media (max-width: 350px) {
    .contact-buttons {
        flex-wrap: wrap;
        gap: 8px;
    }
}

.contact-btn {
    min-width: 80px;
    max-width: 120px;
    flex-shrink: 0;
}

/* Responsive for larger devices */

p {
    margin-top: 0;
    margin-bottom: 1.3rem;
    color: #000000;
}