body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.bg-light-purple {
    background-color: #f0e6ff;
}

.text-purple {
    color: #6c4999;
}

.btn-purple {
    background-color: #6c4999;
    border-color: #6c4999;
    color: white;
}

.btn-purple:hover {
    background-color: #563a7a;
    border-color: #563a7a;
    color: white;
}

.card {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.header-section {
    min-height: 70vh;
    background: linear-gradient(135deg, #f0e6ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.header-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.profile-img {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.quote-box {
    background-color: #6c4999;
    color: white;
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
    position: relative;
}

.quote-box::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #6c4999;
}

.service-card {
    transition: transform 0.3s ease;
}

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

.about-section,
.goal-section,
.services-section,
.contact-section {
    padding: 80px 0;
}

.goal-section {
    background-color: #f8f9fa;
}

.footer {
    background-color: #333;
    color: white;
    padding: 40px 0 20px;
}

.btn-signup {
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    background-color: #6c4999 !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
}

.divider {
    height: 5px;
    width: 50px;
    background-color: #6c4999;
    margin: 20px 0;
}

.nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #6c4999;
}

.language-selector {
    margin-left: 15px;
}

.language-selector .dropdown-item {
    display: flex;
    align-items: center;
}

.language-selector .flag-icon {
    margin-right: 8px;
    width: 20px;
    height: auto;
}

body .navbar {
    height: auto !important;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler {
    margin-left: auto;
    order: 2;
}
