.logo.dark {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.logo.dark .logo-name {
    /* font-family: "Playfair Display", serif; */
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: #ce0000; /* off-white for contrast */
}

.logo.dark .logo-name::after {
    content: "";
    display: block;
    width: 42%;
    height: 2px;
    margin-top: 6px;
    background-color: #d6a6b3; /* rose accent */
    border-radius: 2px;
}

/* .logo.dark .logo-tagline {
    font-family: "Nunito", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.9px;
    margin-top: 6px;
    color: #b8c6bf;
} */

.navbar {
    box-shadow: none !important;
}

.navbar {
    background-color: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* smoother easing */
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    animation: slideDown 0.4s ease-out;
}

.appointment-card {
    margin-top: 30px;
}

@keyframes slideDown {
    from {
        transform: translateY(-10px);
        opacity: 0.8;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Text color animation */
.navbar .logo-name,
.navbar .nav-links a {
    transition: color 0.3s ease;
}

.navbar.scrolled,
.navbar.scrolled .nav-links a {
    color: #333;
}

/* .hero {
    background-color: #F5F7F9 !important;
    z-index: 2;
} */

.cin-about-counselor {
    /* padding-top: 50px; */
    z-index: 10;
    background-color: white;
}

.cin-bg-shadow-blue {
    background-color: #455572;
}

.hero-wrapper-bg {
    position: relative;
}

.hero-wrapper {
    top: 0;
    left: 6%;
    position: absolute;
}

.hero-wrapper-image {
    overflow: hidden;
}
.hero-wrapper-image img {
    /* height: 500px; */
    /* width: 100%; */
    margin-top: 65px;
    border-radius: 10px;
}

.middle-card {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -70px;
}
/* style="background-color: #F5F7F9 !important" */

.email-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.email-meta {
    font-size: 0.9rem;
    color: #6c757d;
}

.email-body {
    line-height: 1.6;
}

@media screen and (max-width: 450px) {
    .hero-wrapper-image img {
        display: none;
    }
    .hero-wrapper-bg img {
        height: 300px;
    }
    .cin-homepage-hero h2 {
        font-size: 16px !important;
    }
    .cin-homepage-hero-wrapper {
        text-align: center !important;
    }
    .hero-wrapper {
        top: 15%;
        left: 0%;
        padding-top: 30px;
    }
    .about-section {
        margin-top: 50px !important;
    }
    .about-section h2,
    .about-section h4 {
        text-align: center !important;
    }
}
