
/* MCM Psych Space - Professional Psychology Redesign */

:root {
    --primary: #324c5d; /* Calming Dark Blue */
    --secondary: #973e67; /* Professional Burgundy */
    --accent: #e4b826; /* Soft Gold */
    --light-bg: #fdfdfd; /* Off-white for less eye strain */
    --text-main: #333333;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-main);
    line-height: 1.7;
}

/* Custom Graphic Placeholders - Speaking Psychology */
.psych-graphic {
    background: linear-gradient(135deg, rgba(50, 76, 93, 0.05) 0%, rgba(151, 62, 103, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(50, 76, 93, 0.1);
    position: relative;
    overflow: hidden;
}

/* Animated Pulse for Graphics */
.node-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(228, 184, 38, 0.1) 0%, transparent 70%);
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
    100% { transform: scale(0.8); opacity: 0.3; }
}

/* Expandable Profile Interaction */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.profile-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(50, 76, 93, 0.1);
}

.profile-card h2 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.profile-card .designation {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    margin-bottom: 25px;
    display: block;
}

.profile-details {
    max-height: 0;
    opacity: 0;
    transition: var(--transition);
    overflow: hidden;
}

.profile-card.expanded .profile-details {
    max-height: 2000px;
    opacity: 1;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

/* Service Cards - High Info Layout */
.service-item {
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
    position: relative;
}

.service-item:hover {
    background: #fff !important;
    box-shadow: 0 15px 45px rgba(0,0,0,0.07);
    transform: scale(1.02);
}

.service-item ul {
    text-align: left;
    padding-left: 0;
    list-style: none;
}

.service-item ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: start;
}

.service-item ul li i {
    color: var(--secondary);
    margin-right: 12px;
    margin-top: 4px;
}

/* Interactive Tabs for Specializations */
.spec-tab-container {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
}

.nav-pills .nav-link {
    color: var(--primary);
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 25px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.nav-pills .nav-link.active {
    background-color: var(--primary);
    color: #fff;
}

/* Global Navigation & Logo Visibility */
.navbar-brand img {
    height: 85px !important;
    transition: var(--transition);
}

.slogan-text {
    font-size: 10px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
    text-align: center;
}

/* Global Elements */
.bg-breadcrumb {
    background: linear-gradient(rgba(50, 76, 93, 0.9), rgba(50, 76, 93, 0.9)), url('../img/breadcrumb.jpg');
    background-size: cover;
    background-position: center;
}

.whatsapp-float {
    position: fixed;
    bottom: 35px;
    left: 35px;
    background: #25D366;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    color: #fff;
}
