@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@font-face {
    font-family:  'TAN-NIMBUS';
    src: url(../font/TAN-NIMBUS.otf);
}
@font-face {
    font-family: 'MARCH';
    src: url('../font/March Clean.ttf');
}
@font-face {
    font-family: 'GITTE';
    src: url(../font/gitte.otf);
}
@font-face {
    font-family: 'FABRICA';
    src: url(../font/Fabrica-Heavy.ttf);
}
@font-face {
    font-family: 'PURPLE-MAGIC';
    src: url(../font/Purple\ Magic\ DEMO.ttf);
}

:root {
    --bg: #FFFAFA;

    /*text color*/
    --text-color-1: #242424;
    --text-color-2: #545454;
    --text-color-3: #000000;
    --text-color-4: #fff;
    --text-color-5: #BA5A87;
    --text-color-6: #2b2b2b;

    /*button color*/
    --btn-color: #9D5977;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    outline: none;
    border: none;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--bg);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: #FFC0CB;
    padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.logo img {
    height: 40px;
}
.logo a {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: var(--text-color-3);
    font-weight: bold;
    font-family: 'Poppins';
    text-decoration: none;
}
.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}
.nav-list {
    display: flex;
    justify-content: center;
}
.nav-list li {
    margin-right: 2rem;
}
.nav-link {
    font-size: 18px;
    color: var(--text-color-2);
    font-weight: bold;
    text-transform: capitalize;
    position: relative;
    transition: all 0.4s ease;
}
.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: #BA5A87;
    transition: all 0.4s ease-in-out;
}
.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}
.nav-link:hover,
.nav-link.active {
    color: #BA5A87;
}
.nav-buttons {
    display: flex;
    align-items: center;
}
.nav-login-button {
    background-color: #BA5A87;
    font-weight: bold;
    font-size: 16px;
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.nav-login-button a {
    color: #fff;
    text-decoration: none;
}
.nav-toggle {
    font-size: 2rem;
    cursor: pointer;
    display: none;
}
.nav-toggle :hover {
    color: var(--btn-color);
    border: 2px solid var(--text-color-3);
}
.profile-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.profile-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color-3);
    font-weight: bold;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}
.profile-icon {
    width: 40px;
    height: 40px;
    background-color: #BA5A87; 
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}
#user-name {
    font-size: 16px;
    color: var(--text-color-3);
    white-space: nowrap;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}
.profile-link:hover .profile-icon {
    background-color: #9D5977;
    transform: scale(1.1);
}
.dropdown-content {
    position: absolute;
    top: 100%; 
    right: 0;
    width: 200px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}
.profile-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: var(--text-color-1);
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease-in-out;
}
.dropdown-content a:hover {
    background-color: #f7f7f7;
    color: #BA5A87;
}
.dropdown-content a:first-child {
    border-bottom: 1px solid #f0f0f0; 
}
.nav-toggle {
    font-size: 2rem;
    padding: 5px 5px 0;
    border: 2px solid transparent;
    cursor: pointer;
    z-index: 100;
    display: none;
}
.nav-toggle :hover {
    color: var(--btn-color);
    border: 2px solid var(--text-color-3);
}

.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: auto;
    background: var(--bg); 
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-link:hover + .dropdown-menu,
.dropdown-menu:hover {
    display: flex;
    opacity: 1;
    visibility: visible;
}
.dropdown-column {
    flex: 1;
    min-width: 200px;
    padding: 10px;
    text-align: left;
    background: var(--bg); 
    margin: 5px;
    border-radius: 5px;
}
.dropdown-category {
    font-weight: bold;
    font-size: 16px;
    color: #E36A89;
    margin-bottom: 8px;
}
.dropdown-category a{
    font-weight: bold;
    font-size: 16px;
    color: #E36A89;
    margin-bottom: 8px;
}
.dropdown-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.dropdown-menu ul li {
    margin-bottom: 6px;
}
.dropdown-menu ul li a {
    display: block;
    padding: 8px;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}
.dropdown-menu ul li a:hover {
    background: #FF99BB; 
    color: #FFF;
}
/* header end */

.testimonial-section {
    max-width: 800px;
    margin: 50px auto;
}
h1 {
    margin-top: 100px;
    text-align: center;
    color: var(--text-color-5);
    font-family: 'TAN-NIMBUS';
    font-size: 4rem;
    font-weight: bold;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}
.testimonial-slider {
    position: relative;
    overflow: hidden;
}
.testimonial-container {
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers vertically */
    flex-direction: column; /* Stack elements */
}

.testimonial {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    display: none;
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensures everything is centered */
    justify-content: center;
}

.testimonial.active {
    display: block;
}
.testimonial img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.customer-initials {
    width: 200px; /* Same as profile image size */
    height: 200px;
    background-color: #9D5977;
    color: white;
    font-weight: bold;
    font-size: 30px; /* Match text size to look like a profile pic */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-transform: uppercase;
    margin: auto; /* Ensure centering */
}

blockquote {
    font-style: italic;
    color: #555;
    padding: 10px;
}
h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}
.stars {
    color: #ff9800;
    font-size: 16px;
    margin-top: 5px;
}
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    border-radius: 50%;
}
.prev-btn { left: 10px; }
.next-btn { right: 10px; }
.dots {
    display: flex;
    justify-content: center; /* Centers dots horizontally */
    align-items: center;
    margin-top: 10px; /* Adjust spacing */
}
.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.dot.active {
    background-color: #333;
    transform: scale(1.2);
}
.customer-initials {
    width: 50px;
    height: 50px;
    background-color: #007bff; /* Change color as needed */
    color: white;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-transform: uppercase;
}
