@font-face {
    font-family: 'YekanBakh';
    src: url('https://uploader-oss-mili.milaadfarzian.workers.dev/download/BQACAgQAAxkBAAICv2iymtz3PuGthpAxUcVoXiyev8SJAAIzQAACy_OZUT2ph7WmNdshNgQ/documents/file_2386.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'YekanBakh';
    src: url('https://uploader-oss-mili.milaadfarzian.workers.dev/download/BQACAgQAAxkBAAICwWiymuEsl0veeBlyzuh3ASm2R1H_AAI0QAACy_OZUV0unp1k_fDdNgQ/documents/file_2387.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'YekanBakh';
    src: url('https://uploader-oss-mili.milaadfarzian.workers.dev/download/BQACAgQAAxkBAAICw2iymuX9Ho15p1mE57WTJ5mfYPf0AAI1QAACy_OZUdEIj-iB8pH2NgQ/documents/file_2388.woff2') format('woff2');
    font-weight: 900; /* Black */
    font-style: normal;
}


body {
    font-family: 'YekanBakh', sans-serif;
}
.oval-card {
    border-radius: 100px;
    width: 180px;
    height: 280px;
}
tailwind.config = {
  theme: {
    extend: {
      colors: {
        primary: '#d1005b',
        'primary-soft': '#fcecf2',
      }
    }
  }
}

/* Bottom Sheet Styles */
.bottom-sheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transition: bottom 0.3s ease;
    z-index: 1000;
    padding: 20px;
    max-height: 80vh;
    overflow-y: auto;
}

.bottom-sheet.open {
    bottom: 0;
}

.bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.bottom-sheet-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.social-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: #f5f5f5;
    cursor: pointer;
    transition: background 0.2s;
}

.social-option:hover {
    background: #e0e0e0;
}

.social-option img {
    width: 30px;
    height: 30px;
    margin-left: 15px;
}

.sticky-banner {
animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

.menu-dropdown input:checked + label i {
    transform: rotate(180deg);
}

.menu-dropdown input:checked ~ .submenu {
    display: block;
}

.submenu {
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #d1005b transparent;
}

.submenu::-webkit-scrollbar {
    width: 4px;
}

.submenu::-webkit-scrollbar-thumb {
    background-color: #d1005b;
    border-radius: 2px;
}

.menu a, .submenu a {
    padding: 12px 16px;
    transition: all 0.2s;
}

.menu a:hover, .submenu a:hover {
    background-color: #fcecf2;
    color: #d1005b;
}

.submenu a {
    padding-left: 24px;
    font-size: 0.9rem;
}



/* Testimonials styling */
.testimonial-card {
    min-height: 250px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

