:root {
    --theme-color: #58776f;
    --theme-color-light: #e8efed;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 26px;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
  }

/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
    padding: 18px 0;
    background: linear-gradient(to right, var(--theme-color) 0%, rgba(88, 119, 111, 0.9) 70%, rgba(255, 255, 255, 0.0) 95%);
}

.navbar-scrolled {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled .nav-link,
.navbar-scrolled .navbar-contact,
.navbar-scrolled .navbar-brand {
    color: var(--theme-color) !important;
}

.navbar-logo {
    height: 50px;
    width: auto;
}

.navbar-brand, .nav-link, .navbar-contact {
    color: white !important;
}

.navbar-contact {
    display: flex;
    flex-direction: column;
}

.navbar-divider {
    width: 1px;
    height: 30px;
    background-color: white;
    margin: 0 15px;
}

.navbar-phone {
    font-weight: 700;
}

navbar-free-call {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
}

.nav-item.active .nav-link {
    background-color: white;
    color: var(--theme-color) !important;
    border-radius: 8px;
    padding: 8px 16px;
}

.appointment-btn {
    background-color: white;
    color: var(--theme-color) !important;
    border-radius: 8px;
    padding: 8px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.appointment-btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.navbar-scrolled .appointment-btn {
    background-color: var(--theme-color);
    color: white !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 900px;
    overflow: hidden;
}

.hero-slide {
    padding: 150px 0;
    height: 900px;
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.desktop-bg {
    display: block;
}

.mobile-bg {
    display: none;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--theme-color) 0%, rgba(88, 119, 111, 0.7) 50%, rgba(255, 255, 255, 0.0) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 150px; /* Increased padding from navbar */
}

.mental-care-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.mental-care-btn {
    background-color: white;
    color: var(--theme-color);
    border-radius: 8px;
    padding: 5px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-right: 15px;
    padding-left: 5px;
}

.name-btn {
    background-color: var(--theme-color);
    color: white;
    border-radius: 8px;
    padding: 2px 10px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

hr.solid {
    border-top: 2px solid black;
}

.action-btns {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.learn-more-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.more-btn {
    background-color: var(--theme-color);
    color: white;
    border: 2px solid var(--theme-color);
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.session-btn {
    background-color: white;
    color: var(--theme-color);
    border: 2px solid var(--theme-color);
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.book-session-btn {
    background-color: white;
    color: var(--theme-color);
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.book-session-btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .hero-section {
        height: 700px;
    }
    
    .hero-slide {
        height: 700px;
        padding: 100px 0;
    }
    
    .desktop-bg {
        display: none;
    }
    
    .mobile-bg {
        display: block;
    }
    
    .hero-gradient {
        background: linear-gradient(to right, var(--theme-color) 0%, rgba(88, 119, 111, 0.85) 70%, rgba(88, 119, 111, 0.7) 100%);
    }
    
    .hero-content {
        padding-top: 80px;
        text-align: center;
    }
    
    .mental-care-wrapper {
        justify-content: center;
    }
    
    .action-btns {
        flex-direction: column;
        align-items: center;
    }
    
    h1.display-4 {
        font-size: 2rem;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .hero-section, .hero-slide {
        height: 600px;
    }
    
    .hero-content {
        padding-top: 60px;
    }
    
    .mental-care-btn {
        font-size: 0.75rem;
        padding: 4px 15px;
    }
    
    .name-btn {
        padding: 2px 8px;
        font-size: 0.75rem;
    }
    
    h1.display-4 {
        font-size: 1.8rem;
    }
}
/* Marquee Section */
.marquee-section {
    background-color: white;
    padding: 50px 0;
    overflow: hidden;
    font-size: 1.5rem;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    margin: 0 30px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.marquee-item:not(:last-child)::after {
    content: "•";
    margin-left: 30px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* About Section */
.about-section {
    background-color: white;
    padding: 80px 0;
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 90%;
}

.about-image {
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(88, 119, 111, 0.15);
}

.about-cloud {
    position: absolute;
    width: 100%;
    height: 150%;
    background: var(--theme-color-light);
    border-radius: 50%;
    top: -25%;
    left: -25%;
    z-index: 1;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* Services Section */
.services-section {
    background-color: white;
    padding: 80px 0;
}

.service-card {
    text-align: center;
    margin-bottom: 30px;
}

.service-icon {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
}

.read-more-btn {
    background-color: var(--theme-color);
    color: white;
    border-radius: 8px;
    padding: 12px 20px;
    display: inline-block;
    margin-top: 15px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: var(--theme-color-light);
    color: var(--theme-color);
}
/* Benefits Section */
.benefits-section {
position: relative;
padding: 80px 0;
background-color: white;
}

.benefits-center-image {
position: relative;
width: 300px;
height: 300px;
margin: 0 auto;
border-radius: 35%;
overflow: hidden;
box-shadow: 0 10px 30px rgba(88, 119, 111, 0.2);
z-index: 2;
}

.benefits-center-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.benefits-left, .benefits-right {
margin-top: 30px;
}

.benefit-card {
background-color: white;
border-radius: 10px;
padding: 20px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}

.benefit-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
width: 50px;
height: 50px;
background-color: var(--theme-color-light);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
color: var(--theme-color);
}

.benefit-content h4 {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 10px;
}

/* Case Study Section */
.case-study-section {
padding: 80px 0;
background-color: white;
overflow: hidden;
}

.case-study-bg-text {
position: absolute;
font-size: 12rem;
font-weight: 900;
color: rgba(0, 0, 0, 0.03);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
white-space: nowrap;
z-index: 0;
}

.case-study-icon {
width: 80px;
height: 80px;
background-color: var(--theme-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
color: white;
margin: 0 auto 20px;
}

.case-study-card {
margin-bottom: 30px;
}

.case-study-image {
position: relative;
border-radius: 10px;
overflow: hidden;
}

.case-study-image img {
width: 100%;
transition: all 0.5s ease;
}

.case-study-overlay {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 20px;
background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
color: white;
opacity: 0;
transition: all 0.3s ease;
}

.case-study-image:hover img {
transform: scale(1.1);
}

.case-study-image:hover .case-study-overlay {
opacity: 1;
}

.case-category {
display: inline-block;
background-color: var(--theme-color);
color: white;
padding: 5px 15px;
border-radius: 5px;
font-size: 0.8rem;
margin-bottom: 10px;
}

.play-sessions-btn {
display: inline-block;
background-color: var(--theme-color);
color: white;
border-radius: 8px;
padding: 10px 25px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
}

.play-sessions-btn:hover {
background-color: var(--theme-color-light);
color: var(--theme-color);
}

/* Second About Section */
.about-section-two {
padding: 80px 0;
background-color: white;
}

.about-image-wrapper-two {
position: relative;
z-index: 1;
}

.about-image-two {
border-radius: 20px;
box-shadow: 0 10px 30px rgba(88, 119, 111, 0.15);
}

.experience-years {
font-size: 3rem;
font-weight: 700;
color: var(--theme-color);
line-height: 1;
}

.skills-list li {
margin-bottom: 10px;
}

/* Reviews Section */
.reviews-section {
padding: 80px 0;
background-color: var(--theme-color-light);
position: relative;
overflow: hidden;
}

/* Updated Marquee Styling */
.marquee-wrapper {
height: 100px; /* Reduced height */
position: relative;
margin-bottom: 30px;
}

.marquee-psychology, .marquee-counselling {
position: absolute;
font-size: 4rem; /* Smaller font size */
font-weight: 900;
white-space: nowrap;
left: 0;
right: 0;
text-align: center;
}

.marquee-psychology {
color: white;
text-shadow: 2px 2px 0 #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000;
opacity: 0.6;
top: 0; /* Position at the top */
animation: marquee-slide 20s linear infinite;
}

.marquee-counselling {
color: #000;
opacity: 0.65;
top: 0; /* Position at the same level */
animation: marquee-slide 20s linear infinite reverse;
}

@keyframes marquee-slide {
0% { transform: translateX(-50%); }
100% { transform: translateX(100%); }
}

.review-card {
background-color: white;
border-radius: 15px;
padding: 30px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
max-width: 800px;
margin: 0 auto;
}

.reviewer-image {
width: 80px;
height: 80px;
margin: 0 auto;
border-radius: 50%;
overflow: hidden;
border: 3px solid var(--theme-color);
}

.rating-number {
font-size: 1.5rem;
font-weight: 700;
color: var(--theme-color);
}

.stars {
color: #FFD700;
font-size: 1.2rem;
margin: 0 10px;
}

.review-text {
font-style: italic;
font-size: 1.1rem;
}

.reviewer-name {
font-weight: 600;
}

/* Blog Section */
.blog-section {
padding: 80px 0;
background-color: white;
}

.blog-card {
background-color: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
margin-bottom: 30px;
transition: all 0.3s ease;
}

.blog-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
position: relative;
overflow: hidden;
}

.blog-image img {
width: 100%;
transition: all 0.5s ease;
}

.blog-card:hover .blog-image img {
transform: scale(1.1);
}

.blog-category {
position: absolute;
top: 15px;
right: 15px;
background-color: var(--theme-color);
color: white;
padding: 5px 15px;
border-radius: 5px;
font-size: 0.8rem;
}

.blog-meta {
font-size: 0.85rem;
color: #777;
}

.blog-title {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 15px;
transition: all 0.3s ease;
}

.blog-title:hover {
color: var(--theme-color);
}

.read-more-link {
color: var(--theme-color);
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
}

.read-more-link:hover {
color: #333;
}

/* Footer */
.footer-section {
background-color: #444;
}

.footer-top {
background-color: #333;
}

.footer-main {
background-color: #333;
}

.footer-copyright {
background-color: #222;
}

.footer-logo {
height: 50px;
}

.footer-links li {
margin-bottom: 10px;
}

.footer-links a {
color: #ccc;
text-decoration: none;
transition: all 0.3s ease;
}

.footer-links a:hover {
color: white;
padding-left: 5px;
}

.social-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.1);
color: white;
border-radius: 50%;
transition: all 0.3s ease;
}

.social-icon:hover {
background-color: var(--theme-color);
color: white;
}

.newsletter-form .form-control {
background-color: rgba(255, 255, 255, 0.1);
border: none;
color: white;
height: 45px;
}

.newsletter-form .btn {
background-color: var(--theme-color);
border-color: var(--theme-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
.benefits-center-image {
    width: 250px;
    height: 250px;
}

.marquee-psychology, .marquee-counselling {
    font-size: 5rem;
}
}

@media (max-width: 768px) {
.benefits-center-image {
    width: 200px;
    height: 200px;
}

.marquee-psychology, .marquee-counselling {
    font-size: 4rem;
}
}
