/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar Styling - Visible and Themed */
html {
    scrollbar-width: thin;
    scrollbar-color: #5B9BD5 #f0f4f8;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scroll-behavior: smooth !important;
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    min-height: 100vh;
    position: relative;
    scroll-behavior: smooth !important;
    height: 100%;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Base Typography - Uniform Sizing */
h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.7rem;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

h5 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Custom Webkit Scrollbar (Chrome, Safari, Edge) */
html::-webkit-scrollbar {
    width: 16px !important;
    height: 16px !important;
}

html::-webkit-scrollbar-track {
    background: #f0f4f8 !important;
    border-left: 2px solid rgba(91, 155, 213, 0.1) !important;
}

html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #5B9BD5 0%, #6BCB77 100%) !important;
    border-radius: 8px !important;
    border: 3px solid #f0f4f8 !important;
    min-height: 50px !important;
}

html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #6BCB77 0%, #5B9BD5 100%) !important;
    border: 3px solid #e8f0f5 !important;
}

html::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #4a8bc4 0%, #5ab86a 100%) !important;
}

/* Hide scrollbars on all other elements except html and modals */
body *:not(.service-modal-body):not(.disorder-modal-content):not(.addiction-modal-content) {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body *:not(.service-modal-body):not(.disorder-modal-content):not(.addiction-modal-content)::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

/* Re-enable scrollbars for modals only */
.service-modal-body,
.disorder-modal-content,
.addiction-modal-content {
    scrollbar-width: thin !important;
    scrollbar-color: #5B9BD5 #b8d4e8 !important;
    -ms-overflow-style: auto !important;
}

.service-modal-body::-webkit-scrollbar,
.disorder-modal-content::-webkit-scrollbar,
.addiction-modal-content::-webkit-scrollbar {
    display: block !important;
    width: 10px !important;
    height: 10px !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, rgb(22 65 104 / 95%), rgb(25 123 37 / 85%));
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 20px rgba(22, 65, 104, 0.3);
    transition: all 0.3s ease;
    min-height: 80px;
    display: flex;
    align-items: center;
    width: 100%;
    pointer-events: auto;
}

.navbar {
    padding: 0;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    min-height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-width: 200px;
}

.logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(91, 155, 213, 0.15);
}

.logo-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    justify-content: center;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.3px;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.logo-tagline {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
    font-style: italic;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 10px;
    display: block;
    white-space: nowrap;
    letter-spacing: 0.1px;
    pointer-events: auto;
    cursor: pointer;
    z-index: 10000;
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 12px;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: calc(100% - 24px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* Background Image Carousel */
.background-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.bg-carousel-slide.active {
    opacity: 1;
}

.bg-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
}

.bg-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    align-self: center;
    /* margin-top: 80px; */
    /* padding-top: 20px; */
    transform: translateY(-20px);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 1;
    animation: fadeInUp 1s ease 0.2s both;
    color: #ffffff;
    line-height: 1.7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Image Carousel */
.image-carousel {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    width: 500px;
    height: 400px;
    z-index: 4;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.image-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-card:hover .card-overlay {
    transform: translateY(0);
}

.card-overlay h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.card-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(240, 244, 248, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(240, 244, 248, 1);
    transform: scale(1.1);
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(240, 244, 248, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: rgba(240, 244, 248, 1);
    transform: scale(1.2);
}

.btn {
    padding: 16px 35px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, rgb(22, 65, 104), rgb(25, 123, 37));
    color: white;
    box-shadow: 0 6px 20px rgba(22, 65, 104, 0.25);
    font-weight: 600;
    letter-spacing: 0.3px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgb(25, 123, 37), rgb(22, 65, 104));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(22, 65, 104, 0.35);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(22, 65, 104, 0.3);
}

.btn-secondary {
    background: rgba(240, 244, 248, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(240, 244, 248, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5B9BD5, #6BCB77);
    color: white;
    transform: translateY(-2px);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(91, 155, 213, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 42px;
    position: relative;
    z-index: 3;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 18px;
    position: relative;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.services .section-header h2,
.services .section-header p {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.services .section-header {
    margin-bottom: 50px;
}

.services .section-header h2::after {
    background: linear-gradient(90deg, rgba(107, 203, 119, 0.9), rgba(107, 203, 119, 0.7));
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #5B9BD5, #6BCB77, #B19CD9);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 655px;
    margin: 25px auto 0;
    line-height: 1.8;
    font-weight: 400;
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(22, 65, 104, 0.05), rgba(25, 123, 37, 0.05));
    position: relative;
    overflow: visible;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 244, 248, 0.);
    z-index: 2;
    pointer-events: none;
}

/* About Subsections */
.about-subsection {
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

.subsection-title {
    font-size: 2.6rem;
    color: rgb(22, 65, 104);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.rci-registered {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    vertical-align: baseline;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, rgb(22, 65, 104), rgb(25, 123, 37));
    border-radius: 2px;
}

.subsection-content {
    /* max-width: 1000px; */
    margin: 0 auto;
    text-align: left;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(22, 65, 104, 0.08);
    border: 1px solid rgba(22, 65, 104, 0.08);
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
}

.subsection-content p {
    margin-bottom: 24px;
    color: #444;
    line-height: 1.8;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.1px;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
}

.subsection-content p:first-child {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(22, 65, 104);
    line-height: 1.6;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 2px solid rgba(22, 65, 104, 0.12);
    letter-spacing: -0.2px;
}

.subsection-content p:nth-child(2) {
    font-size: 1.15rem;
    /* font-weight: 500; */
    color: #444;
    line-height: 1.85;
    margin-bottom: 20px;
}

.subsection-content p:nth-child(3) {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgb(22, 65, 104);
    margin-bottom: 0;
    margin-top: 10px;
}

.subsection-content p:nth-child(4) {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.85;
    margin-bottom: 20px;
    font-weight: 400;
}

.subsection-content p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: rgb(22, 65, 104);
    font-style: italic;
    font-size: 1.15rem;
    /* padding-top: 25px; */
    /* border-top: 2px solid rgba(25, 123, 37, 0.15); */
    /* margin-top: 15px; */
    line-height: 1.8;
}

.mission-list {
    list-style: none;
    padding: 0;
    max-width: 850px;
    margin: 30px auto 40px;
}

.mission-list li {
    padding: 14px 20px 14px 50px;
    position: relative;
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
    border-radius: 8px;
    border-left: 3px solid #6BCB77;
    transition: all 0.3s ease;
}

.mission-list li:hover {
    background: linear-gradient(135deg, #e8f0f5, #f0f4f8);
    border-left-color: #5B9BD5;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(91, 155, 213, 0.1);
}

.mission-list li::before {
    content: '✓';
    position: absolute;
    left: 12px;
    top: 14px;
    color: #6BCB77;
    font-weight: bold;
    font-size: 1.1rem;
    background: rgba(107, 203, 119, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.service-card {
    padding: 33px 27px;
}

/* Philosophy Pillars */
/* Philosophy Layout - Two Column */
.philosophy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 30px;
}

.philosophy-content {
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(22, 65, 104, 0.08);
    border: 1px solid rgba(22, 65, 104, 0.08);
}

.philosophy-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.15rem;
}

.philosophy-content p:first-child {
    color: rgb(22, 65, 104);
    font-size: 1.4rem;
    font-weight: 600;
    border-bottom: 2px solid rgba(22, 65, 104, 0.12);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.philosophy-content p:last-child {
    color: rgb(22, 65, 104);
    font-weight: 500;
    margin-top: 30px;
}

/* Philosophy Slider */
.philosophy-slider {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.philosophy-slider-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.philosophy-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.philosophy-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.philosophy-slide.active {
    display: block;
}

.philosophy-slide-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(22, 65, 104, 0.12);
    border: 1px solid rgba(22, 65, 104, 0.08);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.philosophy-slide-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(22, 65, 104), rgb(25, 123, 37));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(22, 65, 104, 0.2);
}

.philosophy-slide-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.philosophy-slide-card h4 {
    color: rgb(22, 65, 104);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.philosophy-slide-card p {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
}

.philosophy-prev-btn,
.philosophy-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(22, 65, 104), rgb(25, 123, 37));
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(22, 65, 104, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.philosophy-prev-btn {
    left: -25px;
}

.philosophy-next-btn {
    right: -25px;
}

.philosophy-prev-btn:hover,
.philosophy-next-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(22, 65, 104, 0.4);
}

.philosophy-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.philosophy-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(22, 65, 104, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.philosophy-dot.active {
    background: rgb(22, 65, 104);
    width: 30px;
    border-radius: 6px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Philosophy Section Mobile Responsive */
@media (max-width: 968px) {
    .philosophy-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .philosophy-content {
        padding: 40px 30px;
    }
    
    .philosophy-slider-container {
        max-width: 100%;
    }
    
    .philosophy-prev-btn {
        left: 10px;
    }
    
    .philosophy-next-btn {
        right: 10px;
    }
    
    .philosophy-slide-card {
        min-height: 350px;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .philosophy-content {
        padding: 30px 20px;
    }
    
    .philosophy-content p:first-child {
        font-size: 1.1rem;
    }
    
    .philosophy-slide-card {
        min-height: 300px;
        padding: 30px 20px;
    }
    
    .philosophy-slide-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .philosophy-slide-icon i {
        font-size: 2rem;
    }
    
    .philosophy-slide-card h4 {
    font-size: 1.3rem;
    }
    
    .philosophy-prev-btn,
    .philosophy-next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .philosophy-prev-btn {
        left: 5px;
    }
    
    .philosophy-next-btn {
        right: 5px;
    }
}

.philosophy-pillars {
    display: none;
}

.pillar {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(22, 65, 104, 0.08);
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pillar h4 {
    color: rgb(22, 65, 104);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(25, 123, 37, 0.3);
}

.pillar h4::after {
    display: none;
}

.pillar p {
    color: rgb(22, 65, 104);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.1px;
    margin-top: 12px;
}

/* Team Leadership */
.team-leadership {
    margin-bottom: 60px;
}

.team-member-detailed {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(91, 155, 213, 0.15);
    margin-bottom: 40px;
    border-left: 4px solid #5B9BD5;
    min-height: auto;
    overflow: visible;
    transition: all 0.3s ease;
}

.team-member-detailed .member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.team-member-detailed .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-detailed .member-info h4 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.team-member-detailed .credentials {
    color: #5B9BD5;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-member-detailed .title {
    color: #666;
    font-size: 1rem;
    margin-bottom: 15px;
    font-style: italic;
}

.team-member-detailed .description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.credentials-section,
.expertise-section,
.contributions-section {
    margin-bottom: 25px;
}

.credentials-section h5,
.expertise-section h5,
.contributions-section h5 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.credentials-section ul,
.expertise-section ul,
.contributions-section ul {
    list-style: none;
    padding: 0;
}

.credentials-section li,
.expertise-section li,
.contributions-section li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
}

.credentials-section li::before,
.expertise-section li::before,
.contributions-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6BCB77;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Team Categories */
.team-categories {
    margin-top: 40px;
}

.team-category {
    margin-bottom: 40px;
}

.team-category h4 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.team-category h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #5B9BD5, #6BCB77, #B19CD9);
}

.team-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.team-list-simple {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.team-member-text {
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(91, 155, 213, 0.15);
    text-align: center;
    border-top: 3px solid #5B9BD5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(91, 155, 213, 0.25);
    border-top-color: #6BCB77;
}

.team-member-text h5 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.team-member-simple {
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(91, 155, 213, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #5B9BD5;
}

.team-member-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(91, 155, 213, 0.25);
    border-top-color: #6BCB77;
}

.team-member-simple .member-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.team-member-simple .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-simple h5 {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Support Staff */
.support-staff-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.support-item {
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(91, 155, 213, 0.15);
    text-align: center;
    border-top: 3px solid #5B9BD5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(91, 155, 213, 0.25);
    border-top-color: #6BCB77;
}

.support-item h5 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Team Content */
.team-content {
    position: relative;
    z-index: 3;
}

.lead-doctors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.doctor-card {
    background: #f0f4f8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.doctor-card .doctor-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f0f5;
}

.doctor-card .doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.doctor-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.doctor-info h4 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.doctor-info .qualifications {
    color: #5B9BD5;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.doctor-info .role {
    color: #666;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 15px;
}

.doctor-info p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
}

/* Staff Slider */
.staff-slider {
    text-align: center;
    margin-top: 40px;
}

.staff-slider h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.staff-slider-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.staff-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.staff-slide.active {
    position: relative;
    opacity: 1;
}

.staff-card {
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
    padding: 30px;
    text-align: center;
}

.staff-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #5B9BD5;
}

.staff-card h5 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.staff-card p {
    color: #5B9BD5;
    font-weight: 500;
    margin: 0;
}

.staff-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.staff-btn {
    background: rgba(91, 155, 213, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-btn:hover {
    background: rgba(107, 203, 119, 0.9);
    transform: scale(1.1);
}

.staff-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.staff-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(147, 112, 219, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.staff-dot.active,
.staff-dot:hover {
    background: #5B9BD5;
    transform: scale(1.2);
}

.about-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.qualifications {
    color: #00adef;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 30px 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(22, 65, 104, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid rgb(22, 65, 104);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, rgb(22, 65, 104), rgb(25, 123, 37));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(22, 65, 104, 0.2);
}

.stat:hover::before {
    transform: scaleX(1);
}

.stat h4 {
    font-size: 2.5rem;
    color: rgb(22, 65, 104);
    margin-bottom: 8px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.stat p {
    color: #555;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.about-image {
    text-align: center;
}

.doctor-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 5px solid #f0f4f8;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(22, 65, 104, 0.95), rgba(25, 123, 37, 0.85));
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.services-wrapper {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-sidebar {
    width: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.services-vertical-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 4rem;
    font-weight: 900;
    color: #6BCB77;
    letter-spacing: 8px;
    margin: 0;
    transform: rotate(180deg);
    text-shadow: 2px 2px 8px rgba(107, 203, 119, 0.3);
}

.services-content {
    flex: 1;
    /* padding-left: 60px; */
    width: 100%;
}

.services .section-header {
    margin-bottom: 50px;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.2;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 244, 248, 0.3);
    z-index: 2;
}

/* Services List */
.services-list {
    margin-top: 0;
    width: 100%;
}

.service-item {
    background: rgba(22, 65, 104, 0.4);
    border-bottom: 1px solid rgba(107, 203, 119, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 0;
    border-left: none;
    border-right: none;
    border-top: none;
}

.service-item:hover {
    background: rgba(22, 65, 104, 0.6);
    border-bottom-color: rgba(107, 203, 119, 0.6);
}

.service-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 40px;
    /* max-width: 1000px; */
    margin: 0 auto;
}

.service-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
    flex: 1;
}

.service-read-more {
    padding: 12px 35px;
    background: rgba(22, 65, 104, 0.8);
    border: 2px solid #6BCB77;
    color: #ffffff;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.service-read-more:hover {
    background: #6BCB77;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 203, 119, 0.5);
    border-color: #6BCB77;
}

/* ============================================
   PROFESSIONAL MODAL SYSTEM - REDESIGNED
   ============================================ */

/* Base Modal Overlay - All Modals */
.service-modal,
.disorder-modal,
.addiction-modal {
    display: none;
    position: fixed !important;
    z-index: 99999 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    overflow: hidden !important;
    background-color: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    animation: modalFadeIn 0.3s ease;
}

.service-modal.active,
.disorder-modal.active,
.addiction-modal.active {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Modal Content Container */
.service-modal-content,
.disorder-modal-content,
.addiction-modal-content {
    background-color: #ffffff !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border-radius: 20px;
    width: 90% !important;
    max-width: 850px !important;
    max-height: 90vh !important;
    overflow: hidden !important;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
    animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    z-index: 100000 !important;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

@keyframes modalSlideUp {
    from {
        transform: translateY(40px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Close Buttons */
.service-modal-close,
.disorder-modal-close,
.addiction-modal-close {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    color: #666 !important;
    font-size: 28px !important;
    font-weight: 300 !important;
    cursor: pointer !important;
    z-index: 100001 !important;
    width: 42px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2) !important;
    line-height: 1 !important;
    border: 2px solid rgba(22, 65, 104, 0.15) !important;
    user-select: none;
    -webkit-user-select: none;
}

.service-modal-close:hover,
.service-modal-close:focus,
.disorder-modal-close:hover,
.disorder-modal-close:focus,
.addiction-modal-close:hover,
.addiction-modal-close:focus {
    color: #ffffff !important;
    background: rgba(22, 65, 104, 0.95) !important;
    transform: rotate(90deg) scale(1.05) !important;
    box-shadow: 0 5px 15px rgba(22, 65, 104, 0.4) !important;
    border-color: rgba(22, 65, 104, 0.3) !important;
}

/* Modal Body - Scrollable Content */
.service-modal-body,
.disorder-modal-body,
.addiction-modal-body {
    padding: 40px 45px 35px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    flex: 1 !important;
    max-height: calc(90vh - 0px) !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch;
}

.service-modal-body::-webkit-scrollbar {
    width: 8px;
}

.service-modal-body::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.service-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgb(22, 65, 104), rgb(25, 123, 37));
    border-radius: 10px;
}

.service-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgb(25, 123, 37), rgb(22, 65, 104));
}

.service-modal-body h2,
.disorder-modal-body h2,
.addiction-modal-body h2 {
    color: rgb(22, 65, 104);
    font-size: 2.2rem;
    margin-bottom: 20px;
    margin-top: 0;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 3px solid rgb(25, 123, 37);
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.service-modal-body p,
.disorder-modal-body p,
.addiction-modal-body p {
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
    margin-top: 0;
    font-weight: 400;
}

.service-modal-body p strong {
    color: rgb(22, 65, 104);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 15px;
    margin-top: 10px;
}

.service-modal-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
}

.service-modal-body ul li {
    padding: 14px 0 14px 42px;
    color: #444;
    line-height: 1.75;
    font-size: 1.05rem;
    position: relative;
    border-bottom: 1px solid #f0f4f8;
    transition: all 0.2s ease;
}

.service-modal-body ul li:hover {
    color: rgb(22, 65, 104);
    padding-left: 48px;
}

.service-modal-body ul li:last-child {
    border-bottom: none;
}

.service-modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 14px;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.85rem;
    background: rgb(25, 123, 37);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(25, 123, 37, 0.3);
    transition: all 0.2s ease;
}

.service-modal-body ul li:hover::before {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(25, 123, 37, 0.4);
}

.service-modal-body .service-mission {
    background: linear-gradient(135deg, rgba(22, 65, 104, 0.08), rgba(25, 123, 37, 0.08));
    padding: 24px 28px;
    border-radius: 12px;
    margin-top: 30px;
    border-left: 4px solid rgb(25, 123, 37);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-modal-body .service-mission p {
    margin: 0;
    font-style: italic;
    color: rgb(22, 65, 104);
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Services Section - Card Grid Layout */
.disorders-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(232, 240, 245, 0.95), rgba(240, 244, 248, 0.95));
    position: relative;
    overflow: visible;
    width: 100%;
}

.disorders-section .container {
    max-width: 1200px;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
}

.disorders-section .section-header h2 {
    color: rgb(22, 65, 104);
    text-shadow: none;
}

.disorders-section .section-header h2::after {
    background: linear-gradient(135deg, rgb(22, 65, 104), rgb(25, 123, 37));
}

.disorders-section .section-header p {
    color: #666;
    text-shadow: none;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(22, 65, 104, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(22, 65, 104, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(22, 65, 104, 0.2);
    border-color: rgba(25, 123, 37, 0.3);
}

.service-card-image {
    display: none;
}

.service-card-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgb(22, 65, 104);
    margin: 0 0 15px 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.service-card-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 20px 0;
    flex: 1;
}

.service-read-more {
    padding: 12px 28px;
    background: linear-gradient(135deg, rgb(22, 65, 104), rgb(25, 123, 37));
    border: none;
    color: #ffffff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-top: auto;
}

.service-read-more:hover {
    background: linear-gradient(135deg, rgb(25, 123, 37), rgb(22, 65, 104));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 65, 104, 0.3);
}

/* Service Card Hidden State */
.service-card-hidden {
    display: none;
}

.service-card-hidden.show {
    display: flex;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* View More Button */
.services-view-more {
    text-align: center;
    margin-top: 50px;
}

.btn-view-more {
    padding: 16px 40px;
    background: linear-gradient(135deg, rgb(22, 65, 104), rgb(25, 123, 37));
    border: none;
    color: #ffffff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(22, 65, 104, 0.25);
}

.btn-view-more:hover {
    background: linear-gradient(135deg, rgb(25, 123, 37), rgb(22, 65, 104));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(22, 65, 104, 0.35);
}

.btn-view-more i {
    transition: transform 0.3s ease;
}

.btn-view-more.expanded i {
    transform: rotate(180deg);
}

.btn-view-more span {
    letter-spacing: 0.5px;
}

/* Disorder Modal */
.disorder-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.disorder-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.disorder-modal-content {
    background-color: #ffffff;
    margin: auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease;
}

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

.disorder-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    color: rgb(22, 65, 104);
    cursor: pointer;
    background: rgba(0, 0, 0, 0.08);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.disorder-modal-close:hover {
    background: rgb(22, 65, 104);
    color: white;
    transform: rotate(90deg);
}

/* Disorder and Addiction modal body styles now use unified system above */

.disorder-modal-body .symptoms-grid,
.addiction-modal-body .symptoms-grid {
    margin-top: 25px;
    margin-bottom: 0;
}

.disorder-modal-body .symptom-category,
.addiction-modal-body .symptom-category {
    background: #f8f9fa;
    padding: 22px 25px;
    border-radius: 10px;
    margin-bottom: 18px;
    border-left: 4px solid rgb(25, 123, 37);
}

.disorder-modal-body .symptom-category:last-child,
.addiction-modal-body .symptom-category:last-child {
    margin-bottom: 0;
}

.disorder-modal-body .symptom-category h5,
.addiction-modal-body .symptom-category h5 {
    color: rgb(22, 65, 104);
    font-size: 1.2rem;
    margin-bottom: 12px;
    margin-top: 0;
    font-weight: 600;
    padding-left: 12px;
    position: relative;
}

.disorder-modal-body .symptom-category h5::before,
.addiction-modal-body .symptom-category h5::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: rgb(25, 123, 37);
    border-radius: 2px;
}

.disorder-modal-body .symptom-category ul {
    list-style: none;
    padding: 0;
}

.disorder-modal-body .symptom-category li,
.addiction-modal-body .symptom-category li {
    padding: 10px 0 10px 25px;
    color: #555;
    position: relative;
    line-height: 1.7;
    margin-bottom: 4px;
}

.disorder-modal-body .symptom-category li:last-child,
.addiction-modal-body .symptom-category li:last-child {
    margin-bottom: 0;
}

.disorder-modal-body .symptom-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgb(25, 123, 37);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Custom scrollbar for disorder modal */
.disorder-modal-content::-webkit-scrollbar {
    width: 10px;
}

.disorder-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.disorder-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgb(22, 65, 104), rgb(25, 123, 37));
    border-radius: 10px;
}

.disorder-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgb(25, 123, 37), rgb(22, 65, 104));
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.symptom-category {
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(91, 155, 213, 0.1);
    transition: all 0.3s ease;
}

.symptom-category:hover {
    box-shadow: 0 8px 20px rgba(91, 155, 213, 0.2);
    transform: translateY(-2px);
}

.symptom-category h5 {
    color: #5B9BD5;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.symptom-category ul {
    list-style: none;
    padding: 0;
}

.symptom-category li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
}

.symptom-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6BCB77;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Addiction Section */
.addiction-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(22 65 104 / 95%), rgb(25 123 37 / 85%));
    position: relative;
    overflow: visible;
}

.addiction-section .container {
    max-width: 1200px;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
}

.addiction-section .section-header h2 {
    color: #ffffff;
}

.addiction-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* Addictions List */
.addictions-list {
    margin-top: 50px;
    width: 100%;
}

.addiction-item {
    background: rgba(22, 65, 104, 0.4);
    border-bottom: 1px solid rgba(107, 203, 119, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 0;
    border-left: none;
    border-right: none;
    border-top: none;
}

.addiction-item:hover {
    background: rgba(22, 65, 104, 0.6);
    border-bottom-color: rgba(107, 203, 119, 0.6);
}

.addiction-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 40px;
    margin: 0 auto;
}

.addiction-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
    flex: 1;
}

.addiction-read-more {
    padding: 12px 35px;
    background: rgba(22, 65, 104, 0.8);
    border: 2px solid #6BCB77;
    color: #ffffff;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.addiction-read-more:hover {
    background: #6BCB77;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 203, 119, 0.5);
    border-color: #6BCB77;
}

/* Addiction Modal */
.addiction-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.addiction-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.addiction-modal-content {
    background-color: #ffffff;
    margin: auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease;
}

.addiction-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    color: rgb(22, 65, 104);
    cursor: pointer;
    background: rgba(0, 0, 0, 0.08);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.addiction-modal-close:hover {
    background: rgb(22, 65, 104);
    color: white;
    transform: rotate(90deg);
}

/* Addiction modal body styles now use unified system above */

.addiction-modal-body .symptom-category ul {
    list-style: none;
    padding: 0;
}

/* Addiction modal symptom category li styles now use unified system above */

.addiction-modal-body .symptom-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgb(25, 123, 37);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Custom scrollbar for addiction modal */
.addiction-modal-content::-webkit-scrollbar {
    width: 10px;
}

.addiction-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.addiction-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgb(22, 65, 104), rgb(25, 123, 37));
    border-radius: 10px;
}

.addiction-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgb(25, 123, 37), rgb(22, 65, 104));
}

/* Treatment Section */
.treatment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f0f5, #f0f4f8);
    position: relative;
    overflow: visible;
}

.treatment-section h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.treatment-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #5B9BD5, #6BCB77, #B19CD9);
}

.treatment-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.treatment-card {
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(91, 155, 213, 0.15);
    border-left: 4px solid #5B9BD5;
    transition: all 0.3s ease;
}

.treatment-card h4 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.treatment-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.15rem;
}

.treatment-methods h4 {
    font-size: 2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.treatment-list {
    display: grid;
    gap: 30px;
}

.treatment-item {
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(91, 155, 213, 0.15);
    border-left: 4px solid #5B9BD5;
    transition: all 0.3s ease;
}

.treatment-item h5 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.treatment-item p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.treatment-item ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.treatment-item li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
}

.treatment-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6BCB77;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Psychotherapy List */
.psychotherapy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.psychotherapy-list li {
    padding: 12px 0 12px 0;
    color: #444;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6;
    border-bottom: 1px solid rgba(22, 65, 104, 0.1);
    transition: all 0.2s ease;
    position: relative;
}

.psychotherapy-list li::before {
    display: none;
}

.psychotherapy-list li:last-child {
    border-bottom: none;
}

.psychotherapy-list li:hover {
    color: rgb(22, 65, 104);
    padding-left: 10px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(22, 65, 104), rgb(25, 123, 37));
    position: relative;
    overflow: visible;
}

.why-choose-section .section-header h2 {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.why-choose-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.why-choose-section .section-header h2::after {
    background: linear-gradient(90deg, rgba(107, 203, 119, 0.8), rgba(107, 203, 119, 0.6));
}

/* Why Choose Layout - Two Column */
.why-choose-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.why-choose-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3); */
    background: transparent;
    padding: 20px;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    object-fit: contain;
    background: transparent;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

/* Remove white background from PNG using mix-blend-mode */
.why-choose-image img[src*="whychooseus"] {
    background: transparent;
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 10px;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: transparent;
    padding: 15px 0;
    border-radius: 0;
    box-shadow: none;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: none;
}

.why-choose-item:last-child {
    border-bottom: none;
}

.why-choose-item:hover {
    transform: translateX(5px);
    box-shadow: none;
    border-left: none;
    background: transparent;
    padding-left: 8px;
}

.why-choose-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: rgb(107, 203, 119);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(107, 203, 119, 0.3);
}

.why-choose-icon i {
    font-size: 1.1rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-icon {
    background: rgb(91, 155, 213);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(91, 155, 213, 0.4);
}

.why-choose-item:hover .why-choose-icon i {
    color: #ffffff;
}

.why-choose-text {
    flex: 1;
}

.why-choose-text h5 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.why-choose-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.call-to-action {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px 60px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    margin-top: 60px;
    transition: all 0.3s ease;
}

.call-to-action:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.call-to-action p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Admission Section */
.admission {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(22, 65, 104, 0.05), rgba(25, 123, 37, 0.05));
    position: relative;
}

.admission-process {
    margin-bottom: 80px;
}

.admission-process h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.admission-process h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #5B9BD5, #6BCB77, #B19CD9);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(91, 155, 213, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #5B9BD5;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(91, 155, 213, 0.25);
    border-left-color: #6BCB77;
}

.step-number {
    background: linear-gradient(135deg, #5B9BD5, #6BCB77, #B19CD9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(91, 155, 213, 0.3);
}

.step-content h4 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Daily Schedule */
.daily-schedule {
    margin-top: 60px;
}

.daily-schedule h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.daily-schedule h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, rgb(22, 65, 104), rgb(25, 123, 37));
}

.daily-schedule > p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.schedule-period {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(22, 65, 104, 0.12);
    border-top: 4px solid rgb(22, 65, 104);
    transition: all 0.3s ease;
}

.schedule-period:hover {
    border-top-color: rgb(25, 123, 37);
    box-shadow: 0 15px 40px rgba(22, 65, 104, 0.18);
}

.schedule-period h4 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.schedule-activities {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border-left: 3px solid rgb(22, 65, 104);
    transition: all 0.3s ease;
}

.activity:hover {
    border-left-color: rgb(25, 123, 37);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(22, 65, 104, 0.15);
}

.time {
    background: linear-gradient(135deg, rgb(22, 65, 104), rgb(25, 123, 37));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(22, 65, 104, 0.3);
}

.activity-text {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #e8f0f5, #f0f4f8);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(91, 155, 213, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
    border-bottom: 1px solid rgba(91, 155, 213, 0.2);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e8f0f5, #f0f4f8);
}

.faq-question h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    background: linear-gradient(135deg, #5B9BD5, #6BCB77);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(91, 155, 213, 0.3);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #6BCB77, #B19CD9);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #e8f0f5, #f0f4f8);
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 3;
}

.service-card {
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(91, 155, 213, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(91, 155, 213, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5B9BD5, #6BCB77, #B19CD9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(91, 155, 213, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6BCB77;
    font-weight: bold;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f0f5, #f0f4f8);
}

/* Gallery Carousel Container */
.gallery-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 50px auto 0;
    padding: 0 60px;
}

.gallery-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(22, 65, 104, 0.15);
    background: #ffffff;
    padding: 20px;
}

.gallery-carousel-track {
    display: flex;
    gap: 20px;
    will-change: transform;
}

.gallery-carousel-slide {
    flex: 0 0 calc(20% - 16px);
    min-width: calc(20% - 16px);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(22, 65, 104, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.gallery-carousel-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(22, 65, 104, 0.2);
}

.gallery-carousel-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-carousel-slide:hover img {
    transform: scale(1.08);
}

/* Navigation Buttons */
.gallery-prev-btn,
.gallery-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(22, 65, 104, 0.2);
    border-radius: 50%;
    color: rgb(22, 65, 104);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 65, 104, 0.15);
    backdrop-filter: blur(10px);
}

.gallery-prev-btn {
    left: 20px;
}

.gallery-next-btn {
    right: 20px;
}

.gallery-prev-btn:hover,
.gallery-next-btn:hover {
    background: rgb(22, 65, 104);
    color: white;
    border-color: rgb(22, 65, 104);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(22, 65, 104, 0.3);
}

.gallery-prev-btn:active,
.gallery-next-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Dots Indicator */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(22, 65, 104, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-dot.active {
    background: rgb(22, 65, 104);
    width: 32px;
    border-radius: 6px;
    border-color: rgb(25, 123, 37);
}

.gallery-dot:hover {
    background: rgba(22, 65, 104, 0.6);
}

/* Videos Section */
.gallery-videos-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(22, 65, 104, 0.1);
}

.gallery-videos-title {
    text-align: center;
    font-size: 2.2rem;
    color: rgb(22, 65, 104);
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.gallery-videos-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, rgb(22, 65, 104), rgb(25, 123, 37));
    border-radius: 2px;
}

.gallery-videos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-video-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(22, 65, 104, 0.15);
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(22, 65, 104, 0.2);
}

.gallery-video-item video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Team Section */
.team {
    padding: 54px 0;
    background: linear-gradient(135deg, rgba(22, 65, 104, 0.05), rgba(25, 123, 37, 0.05));
}

.team-grid-professional {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-card-professional {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(22, 65, 104, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(22, 65, 104, 0.08);
}

.team-card-professional:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(22, 65, 104, 0.18), 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(25, 123, 37, 0.2);
}

.team-card-image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(22, 65, 104, 0.03), rgba(25, 123, 37, 0.03));
    padding: 50px 40px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-card-image {
    width: 280px;
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(22, 65, 104, 0.15), 0 0 0 8px rgba(22, 65, 104, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card-professional:hover .team-card-image {
    box-shadow: 0 15px 40px rgba(22, 65, 104, 0.2), 0 0 0 8px rgba(25, 123, 37, 0.1);
}

.team-card-professional:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-content {
    padding: 45px 55px 55px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
}

.team-card-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(22, 65, 104, 0.1);
    position: relative;
}

.team-card-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(135deg, rgb(22, 65, 104), rgb(25, 123, 37));
    border-radius: 2px;
}

.team-card-header h3 {
    color: rgb(22, 65, 104);
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.team-card-credentials {
    color: rgb(22, 65, 104);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(22, 65, 104, 0.08), rgba(25, 123, 37, 0.08));
    border-radius: 20px;
    border: 1px solid rgba(22, 65, 104, 0.15);
}

.team-card-title {
    color: #555;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.7;
    margin: 12px 0 0 0;
    font-style: normal;
    letter-spacing: 0.2px;
}

.team-card-body {
    flex: 1;
    text-align: left;
}

.team-card-body p {
    color: #444;
    line-height: 1.8;
    font-size: 1.15rem;
    margin-bottom: 24px;
    text-align: justify;
    letter-spacing: 0.1px;
    font-weight: 400;
}

.team-card-body p:last-child {
    margin-bottom: 0;
}

.team-card-quote {
    font-style: italic !important;
    color: rgb(22, 65, 104) !important;
    font-weight: 500 !important;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(22, 65, 104, 0.06), rgba(25, 123, 37, 0.06));
    border-left: 4px solid rgb(25, 123, 37);
    border-radius: 12px;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
    text-align: left !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    box-shadow: 0 4px 12px rgba(22, 65, 104, 0.08);
    position: relative;
}

.team-card-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    color: rgba(25, 123, 37, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Clinical Psychologists Section */
.team-subsection {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(91, 155, 213, 0.1);
}

.team-subsection .subsection-title {
    font-size: 2.3rem;
    margin-bottom: 45px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: rgb(22, 65, 104);
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.team-subsection .subsection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, rgb(22, 65, 104), rgb(25, 123, 37));
    border-radius: 2px;
}

.team-grid-psychologists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 50px auto 0;
}

.team-member-psychologist {
    text-align: center;
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(91, 155, 213, 0.15);
    transition: all 0.3s ease;
}

.team-member-psychologist:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(91, 155, 213, 0.25);
}

.psychologist-image {
    width: 280px;
    height: 350px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(91, 155, 213, 0.2);
    background: #f0f4f8;
    padding: 10px;
}

.psychologist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
    border-radius: 8px;
}

.team-member-psychologist h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.3px;
}

@media (max-width: 768px) {
    .team-grid-psychologists {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .subsection-content {
        text-align: justify !important;
    }
    
    .psychologist-image {
        width: 240px;
        height: 300px;
    }
    
    .team-member-psychologist h4 {
        font-size: 1.2rem;
    }
}

/* Counsellors Slider Section */
.counsellors-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 0 60px;
}

.counsellors-slider {
    display: flex;
    overflow: hidden;
    gap: 30px;
    scroll-behavior: smooth;
}

.counsellor-slide {
    flex: 0 0 calc(33.333% - 20px);
    text-align: center;
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(91, 155, 213, 0.15);
    transition: all 0.3s ease;
    min-width: 250px;
}

.counsellor-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(91, 155, 213, 0.25);
}

.counsellor-image {
    width: 280px;
    height: 350px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(91, 155, 213, 0.2);
    background: #f0f4f8;
    padding: 10px;
}

.counsellor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
    border-radius: 8px;
}

.counsellor-slide h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.3px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #5B9BD5, #6BCB77);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(91, 155, 213, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: linear-gradient(135deg, #6BCB77, #B19CD9);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(91, 155, 213, 0.4);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

/* Support Staff Section */
.support-staff-content {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
}

.support-staff-content p {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.support-staff-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.support-staff-list li {
    background: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    color: rgb(22, 65, 104);
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid rgba(22, 65, 104, 0.15);
}

@media (max-width: 968px) {
    .counsellors-slider-container {
        padding: 0 50px;
    }
    
    .counsellor-slide {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .counsellors-slider-container {
        padding: 0 50px;
    }
    
    .counsellor-slide {
        flex: 0 0 100%;
    }
    
    .counsellor-image {
        width: 240px;
        height: 300px;
    }
    
    .counsellor-slide h4 {
        font-size: 1.1rem;
    }
    
    .support-staff-list {
        flex-direction: column;
        align-items: normal;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 39px 0;
    background: linear-gradient(135deg, rgba(22, 65, 104, 0.05), rgba(25, 123, 37, 0.05));
    position: relative;
}

.testimonials .section-header h2 {
    color: rgb(22, 65, 104);
}

.testimonials .section-header p {
    color: #555;
}

.testimonials-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 100px;
}

.testimonials-slider-wrapper {
    position: relative;
}

.testimonials-slider {
    display: flex;
    overflow: hidden;
    gap: 0;
    border-radius: 24px;
}

.testimonial-slide {
    flex: 0 0 100%;
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: none;
    transform: translateX(20px);
}

.testimonial-slide.active {
    opacity: 1;
    display: block;
    transform: translateX(0);
}

.testimonial-card {
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 50px rgba(22, 65, 104, 0.12), 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid rgba(22, 65, 104, 0.08);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, rgb(22, 65, 104), rgb(25, 123, 37));
    border-radius: 24px 24px 0 0;
}

.testimonial-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgb(22, 65, 104), rgb(25, 123, 37));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(22, 65, 104, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(22, 65, 104, 0.3);
}

.testimonial-text {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.9;
    margin-bottom: 30px;
    font-style: normal;
    font-weight: 400;
    position: relative;
    padding: 0 20px;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(22, 65, 104, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(22, 65, 104, 0.1), rgba(25, 123, 37, 0.1));
    color: rgb(22, 65, 104);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 24px;
    border-radius: 25px;
    margin-top: 20px;
    border: 1px solid rgba(22, 65, 104, 0.15);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-category {
    background: linear-gradient(135deg, rgb(22, 65, 104), rgb(25, 123, 37));
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 65, 104, 0.2);
}

.testimonials-prev-btn,
.testimonials-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgb(22, 65, 104), rgb(25, 123, 37));
    color: #ffffff;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(22, 65, 104, 0.25);
}

.testimonials-prev-btn {
    left: -28px;
}

.testimonials-next-btn {
    right: -28px;
}

.testimonials-prev-btn:hover,
.testimonials-next-btn:hover {
    background: linear-gradient(135deg, rgb(25, 123, 37), rgb(22, 65, 104));
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(25, 123, 37, 0.35);
}

.testimonials-prev-btn:active,
.testimonials-next-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(22, 65, 104, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-dot.active {
    background: rgb(22, 65, 104);
    width: 36px;
    border-radius: 6px;
}

.testimonial-dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 3px;
    background: rgb(25, 123, 37);
    border-radius: 2px;
}

.testimonial-dot:hover {
    background: rgba(22, 65, 104, 0.5);
    transform: scale(1.2);
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #5B9BD5;
    font-weight: 500;
}

.testimonials-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.testimonials-content p {
    color: #444;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 24px;
    text-align: left;
}

.testimonials-content p:first-of-type {
    font-size: 1.15rem;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.8;
}

.testimonials-content p:last-of-type {
    font-weight: 500;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 0;
}

.testimonials-stories {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    max-width: 850px;
}

.testimonials-stories li {
    padding: 14px 20px 14px 50px;
    position: relative;
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #e8f0f5, #f0f4f8);
    border-radius: 8px;
    border-left: 3px solid #6BCB77;
    transition: all 0.3s ease;
}

.testimonials-stories li:hover {
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
    border-left-color: #5B9BD5;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(91, 155, 213, 0.1);
}

.testimonials-stories li::before {
    content: '•';
    position: absolute;
    left: 20px;
    color: #6BCB77;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.testimonials-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    max-width: 850px;
}

.testimonials-list li {
    padding: 14px 20px 14px 50px;
    position: relative;
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #e8f0f5, #f0f4f8);
    border-radius: 8px;
    border-left: 3px solid #6BCB77;
    transition: all 0.3s ease;
}

.testimonials-list li:hover {
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
    border-left-color: #5B9BD5;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(91, 155, 213, 0.1);
}

.testimonials-list li::before {
    content: '•';
    position: absolute;
    left: 20px;
    top: 14px;
    color: #6BCB77;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

/* Ratings Section */
.ratings {
    padding: 80px 0;
    background: linear-gradient(135deg, #5B9BD5, #6BCB77, #B19CD9);
    color: #ffffff;
    text-align: center;
}

.rating-stars {
    margin: 20px 0;
}

.rating-stars i {
    color: #f1c40f;
    font-size: 2rem;
    margin: 0 5px;
}

.rating-stars span {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 10px;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    margin-top: 20px;
}

.btn-outline:hover {
    background: white;
    color: #5B9BD5;
}

/* Appointment Section */
.appointment {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f0f5, #f0f4f8);
    position: relative;
    overflow: hidden;
}

.appointment-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.appointment-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.5;
}

.appointment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 244, 248, 0.7);
    z-index: 2;
    pointer-events: none;
}

.appointment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 3;
}

.appointment-form {
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(91, 155, 213, 0.15);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5B9BD5;
    box-shadow: 0 0 0 3px rgba(91, 155, 213, 0.1);
}

.appointment-info {
    padding: 40px;
}

.appointment-info h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(91, 155, 213, 0.15);
    transition: all 0.3s ease;
}

.contact-item:hover {
    box-shadow: 0 8px 20px rgba(91, 155, 213, 0.25);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #5B9BD5;
    margin-right: 20px;
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-item p {
    color: #7f8c8d;
    margin: 0;
}

.contact-item p a {
    color: #5B9BD5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item p a:hover {
    color: #6BCB77;
    text-decoration: underline;
}

.footer-section .contact-info p a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section .contact-info p a:hover {
    color: #6BCB77;
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo {
    width: 40px;
    height: 40px;
}

.footer-section {
    text-align: left;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #6BCB77;
    text-align: left;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #6BCB77;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #5B9BD5, #6BCB77);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(91, 155, 213, 0.3);
}

.social-links a:hover {
    background: linear-gradient(135deg, #6BCB77, #B19CD9);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(107, 203, 119, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(107, 203, 119, 0.3);
    color: #e0e0e0;
}

/* WhatsApp Chat Button */
/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

/* Sticky Buttons Container - Vertical Stack */
.sticky-buttons-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Call Button (Mobile Only) */
.call-chat {
    position: fixed;
    bottom: 105px; /* Above WhatsApp button */
    right: 30px;
    z-index: 1000;
    display: none; /* Hidden by default, shown only on mobile */
}

.call-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgb(22, 65, 104), rgb(25, 123, 37));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(22, 65, 104, 0.3);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(22, 65, 104, 0.4);
}

/* Scroll Up Button */
.scroll-up-btn {
    position: fixed;
    bottom: 180px; /* Above call button */
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(22, 65, 104, 0.9);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(22, 65, 104, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-up-btn.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-up-btn:hover {
    background: rgba(25, 123, 37, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(25, 123, 37, 0.4);
}

.scroll-up-btn i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 3px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 8px 8px;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        gap: 2px;
    }
    
    .nav-link {
        font-size: 11px;
        padding: 8px 6px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .logo-tagline {
        font-size: 10px;
    }
}

/* Mobile Responsive Typography - Uniform Sizing */
@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    h4 {
        font-size: 1.2rem;
    }
    
    h5 {
        font-size: 1.1rem;
    }
    
    h6 {
        font-size: 1rem;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Hero Section */
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Subsection Titles */
    .subsection-title {
        font-size: 1.5rem;
    }
    
    /* About Section */
    .subsection-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .subsection-content p:first-child {
        font-size: 1.15rem;
    }
    
    /* Philosophy Section */
    .philosophy-content p {
        font-size: 0.95rem;
    }
    
    .philosophy-content p:first-child {
        font-size: 1.1rem;
    }
    
    .philosophy-slide-card h4 {
        font-size: 1.3rem;
    }
    
    .philosophy-slide-card p {
        font-size: 0.95rem;
    }
    
    /* Services Section */
    .service-card-content h3 {
        font-size: 1.2rem;
    }
    
    .service-card-content p {
        font-size: 0.9rem;
    }
    
    .service-item h3,
    .disorder-item h3,
    .addiction-item h3 {
        font-size: 1.2rem;
    }
    
    /* Testimonials */
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* Team Section */
    .team-card-body p {
        font-size: 0.95rem;
    }
    
    .team-card-header h3 {
        font-size: 1.5rem;
    }
    
    .team-card-credentials {
        font-size: 1rem;
    }
    
    .team-card-title {
        font-size: 0.9rem;
    }
    
    /* Treatment Section */
    .treatment-card p {
        font-size: 0.95rem;
    }
    
    .treatment-item h5 {
        font-size: 1.2rem;
    }
    
    .treatment-item p {
        font-size: 0.95rem;
    }
    
    .psychotherapy-list li {
        font-size: 0.95rem;
    }
    
    /* Why Choose Section */
    .why-choose-text h5 {
        font-size: 1.1rem;
    }
    
    .why-choose-text p {
        font-size: 0.9rem;
    }
    
    .call-to-action p {
        font-size: 1rem;
    }
    
    /* Why Choose Section Tablet */
    .why-choose-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-image {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .why-choose-content {
        order: 1;
    }
    
    .why-choose-item {
        padding: 15px 0;
    }
    
    .why-choose-icon {
        width: 35px;
        height: 35px;
    }
    
    .why-choose-icon i {
        font-size: 1rem;
    }
    
    .why-choose-text h5 {
        font-size: 1.15rem;
    }
    
    .why-choose-text p {
        font-size: 0.9rem;
    }
    
    .call-to-action {
        padding: 40px 30px;
    }
    
    .call-to-action p {
        font-size: 1.1rem;
    }
    
    /* Services Grid Tablet */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .service-card-image {
        display: none;
    }
    
    .service-card-content {
        padding: 25px 20px;
    }
    
    .service-card-content h3 {
        font-size: 1.3rem;
    }
    
    .service-card-content p {
        font-size: 0.95rem;
    }
    
    /* Gallery Section Mobile - Professional Styling */
    .gallery {
        padding: 60px 0;
    }
    
    .gallery-carousel-container {
        padding: 0 15px;
        margin: 30px auto 0;
    }
    
    .gallery-carousel-wrapper {
        border-radius: 15px;
        padding: 15px;
        box-shadow: 0 10px 30px rgba(22, 65, 104, 0.12);
    }
    
    .gallery-carousel-slide {
        flex: 0 0 calc(100% - 10px);
        min-width: calc(100% - 10px);
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(22, 65, 104, 0.1);
    }
    
    .gallery-carousel-slide:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(22, 65, 104, 0.15);
    }
    
    .gallery-carousel-slide img {
        height: 280px;
        border-radius: 12px;
    }
    
    .gallery-prev-btn,
    .gallery-next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-prev-btn {
        left: 5px;
    }
    
    .gallery-next-btn {
        right: 5px;
    }
    
    .gallery-dots {
        margin-top: 25px;
        gap: 8px;
    }
    
    .gallery-dot {
        width: 10px;
        height: 10px;
    }
    
    .gallery-dot.active {
        width: 24px;
        height: 10px;
    }
    
    .gallery-videos-section {
        margin-top: 50px;
        padding-top: 40px;
    }
    
    .gallery-videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-videos-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    /* Adjust hero image position for mobile to show counselling section */
    .bg-carousel-slide:first-child .bg-carousel-image {
        object-position: 60% center !important;
    }
    
    .header {
        top: 0;
        min-height: 70px;
    }
    
    .nav-container {
        min-height: 70px;
        padding: 0 15px;
    }
    
    .nav-logo {
        min-width: auto;
        gap: 10px;
    }
    
    .logo {
        width: 45px;
        height: 45px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-tagline {
        font-size: 9px;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, rgb(22 65 104 / 98%), rgb(25 123 37 / 88%));
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(22, 65, 104, 0.4);
        padding: 20px 0 30px 0;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        z-index: 9999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        display: block;
        margin: 0;
        padding: 0;
    }
    
    .nav-item:first-child {
        display: block;
    }
    
    .nav-link {
        padding: 15px 30px;
        font-size: 15px;
        width: 100%;
        display: block;
        white-space: nowrap;
        box-sizing: border-box;
    }
    
    .nav-link[href="#home"] {
        display: block;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.15);
        color: #ffffff;
    }
    
    .hero h1 {
        font-size: 2.4rem;
        text-align: left;
    }
    
    .hero p {
        font-size: 1.15rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .subsection-title {
        font-size: 2rem;
    }
    
    .subsection-content p {
        font-size: 1.05rem;
    }
    
    .subsection-content p:first-child {
        font-size: 1.3rem;
    }
    
    .philosophy-content p {
        font-size: 1rem;
    }
    
    .philosophy-content p:first-child {
        font-size: 1.2rem;
    }
    
    .philosophy-slide-card h4 {
        font-size: 1.5rem;
    }
    
    .philosophy-slide-card p {
        font-size: 1.05rem;
    }
    
    .service-item h3,
    .disorder-item h3,
    .addiction-item h3 {
        font-size: 1.4rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .team-card-body p {
        font-size: 1.05rem;
    }
    
    .treatment-card p {
        font-size: 1.05rem;
    }
    
    .hero-content {
        bottom: 93px;
    }
    
    .hero-buttons {
        /* flex-direction: column; */
        align-items: center;
    }
    
    .about-content,
    .appointment-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .appointment-form,
    .appointment-info,
    .contact-info,
    .contact-map {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-map iframe {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        display: block;
    }
    
    .lead-doctors {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-subsection {
        margin-bottom: 50px;
    }
    
    .subsection-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    .subsection-content {
        padding: 30px 25px !important;
        border-radius: 16px;
        margin: 0 15px;
        box-shadow: 0 8px 30px rgba(22, 65, 104, 0.1);
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: none;
    }
    
    .subsection-content p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .subsection-content p:first-child {
        font-size: 1.25rem;
        margin-bottom: 24px;
        padding-bottom: 18px;
        line-height: 1.7;
    }
    
    .subsection-content p:nth-child(2) {
        font-size: 1.05rem;
        margin-bottom: 18px;
        line-height: 1.75;
    }
    
    .subsection-content p:nth-child(3) {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .subsection-content p:nth-child(4) {
        font-size: 1.05rem;
        margin-bottom: 18px;
        line-height: 1.75;
        color: #444;
        font-weight: 400;
    }
    
    .subsection-content p:last-child {
        font-size: 1.05rem;
        padding-top: 20px;
        margin-top: 12px;
        line-height: 1.75;
    }
    
    .philosophy-pillars {
        text-align: center;
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
        margin-bottom: 25px;
    }
    
    .pillar {
        padding: 30px 25px;
        border-radius: 16px;
        border-left-width: 5px;
    }
    
    .pillar h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .pillar p {
        font-size: 1rem;
        line-height: 1.75;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .stat h4 {
        font-size: 2rem;
    }
    
    .stat p {
        font-size: 0.95rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-card-image {
        display: none;
    }
    
    .service-card-content {
        padding: 25px 20px;
    }
    
    .service-card-content h3 {
        font-size: 1.3rem;
    }
    
    .service-card-content p {
        font-size: 0.95rem;
    }
    
    .symptoms-grid {
        grid-template-columns: 1fr;
    }
    
    .treatment-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .disorder-item-content,
    .addiction-item-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 15px;
        gap: 15px;
    }
    
    .disorder-item h3,
    .addiction-item h3 {
        font-size: 1.1rem;
        width: 100%;
        line-height: 1.4;
        letter-spacing: 0.3px;
    }
    
    .disorder-read-more,
    .addiction-read-more {
        width: 100%;
        text-align: center;
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .disorders-section .section-header h2,
    .addiction-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .disorders-section .section-header p,
    .addiction-section .section-header p {
        font-size: 0.95rem;
    }
    
    .disorder-modal-content,
    .addiction-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .disorder-modal-body,
    .addiction-modal-body {
        padding: 30px 25px;
    }
    
    .disorder-modal-body h2,
    .addiction-modal-body h2 {
        font-size: 1.5rem;
    }
    
    .disorder-modal-body .symptoms-grid,
    .addiction-modal-body .symptoms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .disorder-card,
    .addiction-card,
    .treatment-card,
    .treatment-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .disorders-section h3,
    .addiction-section h3,
    .treatment-section h3,
    .why-choose-section h3 {
        font-size: 2rem;
    }
    
    .philosophy-pillars {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 35px;
        margin-bottom: 30px;
    }
    
    .pillar {
        padding: 35px 28px;
        border-radius: 12px;
    }
    
    .pillar h4 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .pillar p {
        font-size: 1rem;
        line-height: 1.75;
    }
    
    .team-member-detailed {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .team-member-detailed .member-image {
        width: 150px;
        height: 150px;
        margin: 0 auto 20px;
    }
    
    .team-grid-simple {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonials-slider-container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .testimonial-card {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .testimonial-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .testimonial-text {
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 25px;
        padding: 0 5px;
    }
    
    .testimonial-text::before {
        font-size: 3rem;
        top: -15px;
        left: -5px;
    }
    
    .testimonial-category {
        font-size: 0.85rem;
        padding: 8px 20px;
    }
    
    .testimonials-prev-btn,
    .testimonials-next-btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    
    .testimonials-prev-btn {
        left: -24px;
    }
    
    .testimonials-next-btn {
        right: -24px;
    }
    
    .testimonials-slider-container {
        padding: 0 60px;
    }
    
    .testimonials-dots {
        margin-top: 30px;
        gap: 8px;
    }
    
    .testimonial-dot {
        width: 10px;
        height: 10px;
    }
    
    .testimonial-dot.active {
        width: 28px;
    }
}

@media (max-width: 480px) {
    /* Uniform Typography for Small Mobile */
    body {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    h4 {
        font-size: 1.1rem;
    }
    
    h5 {
        font-size: 1rem;
    }
    
    h6 {
        font-size: 0.95rem;
    }
    
    p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Hero Section */
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* Subsection Titles */
    .subsection-title {
        font-size: 1.3rem;
    }
    
    /* About Section */
    .subsection-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .subsection-content p:first-child {
        font-size: 1.05rem;
    }
    
    /* Philosophy Section */
    .philosophy-content p {
        font-size: 0.9rem;
    }
    
    .philosophy-content p:first-child {
        font-size: 1rem;
    }
    
    .philosophy-slide-card h4 {
        font-size: 1.2rem;
    }
    
    .philosophy-slide-card p {
        font-size: 0.9rem;
    }
    
    /* Services Section */
    .service-card-content h3 {
        font-size: 1.1rem;
    }
    
    .service-card-content p {
        font-size: 0.85rem;
    }
    
    .service-item h3,
    .disorder-item h3,
    .addiction-item h3 {
        font-size: 1.1rem;
    }
    
    /* Team Section */
    .team-card-body p {
        font-size: 0.9rem;
    }
    
    .team-card-header h3 {
        font-size: 1.3rem;
    }
    
    .team-card-credentials {
        font-size: 0.95rem;
    }
    
    .team-card-title {
        font-size: 0.85rem;
    }
    
    /* Treatment Section */
    .treatment-card p {
        font-size: 0.9rem;
    }
    
    .treatment-item h5 {
        font-size: 1.1rem;
    }
    
    .treatment-item p {
        font-size: 0.9rem;
    }
    
    .psychotherapy-list li {
        font-size: 0.9rem;
    }
    
    /* Why Choose Section */
    .why-choose-text h5 {
        font-size: 1rem;
    }
    
    .why-choose-text p {
        font-size: 0.85rem;
    }
    
    .call-to-action p {
        font-size: 0.95rem;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-slider-container {
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 35px 25px;
        border-radius: 16px;
    }
    
    .testimonial-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .testimonial-text::before {
        font-size: 2.5rem;
        top: -10px;
    }
    
    .testimonial-category {
        font-size: 0.8rem;
        padding: 8px 18px;
        letter-spacing: 1px;
    }
    
    .testimonials-prev-btn,
    .testimonials-next-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .testimonials-prev-btn {
        left: -22px;
    }
    
    .testimonials-next-btn {
        right: -22px;
    }
    
    .testimonials-slider-container {
        padding: 0 50px;
    }
    
    .testimonial-card {
        padding: 35px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card-image {
        display: none;
    }
    
    .service-card-content {
        padding: 0px 0px;
    }
    
    
    .service-card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .service-card-content p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .service-read-more {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    
    /* Why Choose Section Mobile */
    .why-choose-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-choose-image {
        max-width: 100%;
        padding: 15px;
    }
    
    .why-choose-item {
        flex-direction: row;
        padding: 15px 0;
        gap: 12px;
    }
    
    .why-choose-icon {
        width: 32px;
        height: 32px;
    }
    
    .why-choose-icon i {
        font-size: 0.95rem;
    }
    
    .why-choose-text h5 {
        font-size: 1rem;
    }
    
    .why-choose-text p {
        font-size: 0.85rem;
    }
    
    .call-to-action {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .call-to-action p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .disorder-item-content,
    .addiction-item-content {
        padding: 18px 12px;
        gap: 12px;
    }
    
    .disorder-item h3,
    .addiction-item h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        letter-spacing: 0.2px;
    }
    
    .disorder-read-more,
    .addiction-read-more {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .disorders-section .section-header h2,
    .addiction-section .section-header h2 {
        font-size: 1.5rem;
    }
    
    .disorders-section .section-header p,
    .addiction-section .section-header p {
        font-size: 0.9rem;
    }
    
    /* Gallery Carousel Small Mobile */
    .gallery-carousel-container {
        padding: 0 40px;
    }
    
    .gallery-carousel-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    
    .gallery-carousel-slide img {
        height: 220px;
    }
    
    .gallery-prev-btn,
    .gallery-next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-prev-btn {
        left: 5px;
    }
    
    .gallery-next-btn {
        right: 5px;
    }
    
    .gallery-videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-videos-title {
        font-size: 1.6rem;
    }
    
    .support-staff-list {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 25px 20px;
        gap: 20px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    
    .step-content {
        flex: 1;
    }
    
    .step-content h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .step-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .activity {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .time {
        min-width: auto;
        width: fit-content;
        margin: 0 auto;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .footer-section {
        text-align: left;
    }
    
    /* Why Choose Section Mobile - Image Below Content */
    .why-choose-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .why-choose-image {
        order: 2 !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .why-choose-content {
        order: 1 !important;
    }
    
    /* Why Choose Item - Keep in One Line for Mobile */
    .why-choose-item {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding: 18px 0 !important;
    }
    
    .why-choose-icon {
        flex-shrink: 0 !important;
        width: 35px !important;
        height: 35px !important;
    }
    
    .why-choose-icon i {
        font-size: 0.95rem !important;
    }
    
    .why-choose-text {
        flex: 1 !important;
    }
    
    /* Sticky Buttons - Vertical Stack on Mobile */
    .whatsapp-chat {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Call Button - Show on Mobile Only, Positioned Above WhatsApp */
    .call-chat {
        display: block !important;
        bottom: 85px; /* 20px (whatsapp bottom) + 50px (whatsapp height) + 15px (gap) */
        right: 20px;
    }
    
    .call-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Scroll Up Button - Top of the stack, appears after scroll */
    .scroll-up-btn {
        bottom: 150px; /* 20px (whatsapp bottom) + 50px (whatsapp) + 15px (gap) + 50px (call) + 15px (gap) */
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .scroll-up-btn i {
        font-size: 1.2rem;
    }
    
    .image-carousel {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        height: 350px;
        margin-top: 30px;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    /* Team Section Mobile Fixes */
    .team {
        padding: 60px 0;
    }
    
    .team-grid-professional {
        gap: 40px;
        margin-top: 40px;
    }
    
    .team-card-professional {
        min-height: auto;
    }
    
    .team-card-image-wrapper {
        padding: 30px 20px 20px;
    }
    
    .team-card-image {
        width: 240px;
        height: 300px;
        padding: 15px;
    }
    
    .team-card-content {
        padding: 30px 30px 40px;
    }
    
    .team-card-header h3 {
        font-size: 1.7rem;
    }
    
    .team-card-body p {
        text-align: justify;
        font-size: 0.95rem;
    }
    
    /* Services Section Mobile Fixes */
    .services,
    .disorders-section,
    .addiction-section,
    .treatment-section,
    .why-choose-section {
        padding: 60px 0;
    }
    
    .services-wrapper {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .services-sidebar {
        width: 100%;
        height: 80px;
        padding: 20px 0;
    }
    
    .services-vertical-title {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        transform: none;
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .services-content {
        padding-left: 0;
        padding-top: 20px;
        width: 100%;
    }
    
    .service-item-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 25px 20px;
        max-width: 100%;
    }
    
    .service-item h3 {
        font-size: 1.4rem;
    }
    
    .service-read-more {
        width: 100%;
        text-align: center;
    }
    
    /* Service Modal Mobile Styles - Professional */
    .service-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        padding: 10px;
        margin: 0;
        background-color: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .service-modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        box-sizing: border-box;
    }
    
    .service-modal-content {
        width: 100%;
        max-width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
        border-radius: 16px;
        margin: 0;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        box-sizing: border-box;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
        animation: slideUpMobile 0.3s ease;
    }
    
    @keyframes slideUpMobile {
        from {
            transform: translateY(30px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .service-modal-body,
    .disorder-modal-body,
    .addiction-modal-body {
        padding: 35px 20px 25px !important;
        max-height: calc(100vh - 80px) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .service-modal-body h2,
    .disorder-modal-body h2,
    .addiction-modal-body h2 {
        font-size: 21px !important;
        margin-bottom: 18px !important;
        margin-top: 0 !important;
        padding-bottom: 12px !important;
    }
    
    .service-modal-body p,
    .disorder-modal-body p,
    .addiction-modal-body p {
        font-size: 1rem !important;
        margin-bottom: 18px !important;
        margin-top: 0 !important;
    }
    
    .service-modal-body p strong,
    .disorder-modal-body p strong,
    .addiction-modal-body p strong {
        font-size: 1.05rem !important;
    }
    
    .service-modal-body ul li,
    .disorder-modal-body ul li,
    .addiction-modal-body ul li {
        padding: 10px 0 10px 35px !important;
        font-size: 1rem !important;
        margin-bottom: 4px !important;
    }
    
    .service-modal-body ul li::before,
    .disorder-modal-body ul li::before,
    .addiction-modal-body ul li::before {
        width: 24px !important;
        height: 24px !important;
        top: 10px !important;
        font-size: 0.8rem !important;
    }
    
    .service-modal-close,
    .disorder-modal-close,
    .addiction-modal-close {
        top: 12px !important;
        right: 12px !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 22px !important;
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2) !important;
        border: 2px solid rgba(22, 65, 104, 0.15) !important;
    }
    
    .service-modal-body .service-mission {
        padding: 18px 20px !important;
        margin-top: 20px !important;
    }
    
    .disorder-modal-body .symptoms-grid,
    .addiction-modal-body .symptoms-grid {
        margin-top: 20px !important;
        margin-bottom: 0 !important;
    }
    
    .disorder-modal-body .symptom-category,
    .addiction-modal-body .symptom-category {
        padding: 18px 20px !important;
        margin-bottom: 15px !important;
    }
    
    .disorder-modal-body .symptom-category:last-child,
    .addiction-modal-body .symptom-category:last-child {
        margin-bottom: 0 !important;
    }
    
    .disorder-modal-body .symptom-category h5,
    .addiction-modal-body .symptom-category h5 {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
        margin-top: 0 !important;
        padding-left: 10px !important;
    }
    
    .disorder-modal-body .symptom-category li,
    .addiction-modal-body .symptom-category li {
        padding: 8px 0 8px 22px !important;
        margin-bottom: 3px !important;
    }
    
    .disorder-modal-body .symptom-category li:last-child,
    .addiction-modal-body .symptom-category li:last-child {
        margin-bottom: 0 !important;
    }
    
    /* Disorder and Addiction Modals Mobile Styles - Professional */
    .disorder-modal,
    .addiction-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        padding: 10px;
        margin: 0;
        background-color: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .disorder-modal.active,
    .addiction-modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        box-sizing: border-box;
    }
    
    .disorder-modal-content,
    .addiction-modal-content {
        width: 100%;
        max-width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
        border-radius: 16px;
        margin: 0;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        box-sizing: border-box;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
        animation: slideUpMobile 0.3s ease;
    }
    
    /* Disorder and Addiction modal mobile styles now use unified system above */
    
    .services {
        padding: 60px 0;
        min-height: auto;
    }
    
    .disorder-card h4 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .disorder-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .symptom-category {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .symptom-category h5 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .treatment-methods h4{
        font-size: 20px;
        color: #2c3e50;
        text-align: center;
        margin-bottom: 24px;
        font-weight: 600;
        text-align: left;
        padding-top: 29px;
    }
    
    
    .symptom-category li {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 6px 0;
        padding-left: 25px;
        padding-right: 10px;
    }
    
    .symptom-category li::before {
        left: 5px;
        font-size: 1rem;
    }
    
    .treatment-item li {
        padding-left: 25px;
        padding-right: 10px;
        padding-top: 6px;
        padding-bottom: 6px;
        line-height: 1.6;
    }
    
    .treatment-item li::before {
        left: 5px;
        font-size: 1rem;
    }
    
    /* Section Headers Mobile Fixes */
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Gallery Section Mobile Fixes - Professional Styling */
    .gallery {
        padding: 50px 0;
    }
    
    .gallery-carousel-container {
        padding: 0 10px;
        margin: 25px auto 0;
    }
    
    .gallery-carousel-wrapper {
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 8px 25px rgba(22, 65, 104, 0.1);
    }
    
    .gallery-carousel-slide {
        flex: 0 0 calc(100% - 8px);
        min-width: calc(100% - 8px);
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(22, 65, 104, 0.08);
    }
    
    .gallery-carousel-slide:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(22, 65, 104, 0.12);
    }
    
    .gallery-carousel-slide img {
        height: 250px;
        border-radius: 10px;
    }
    
    .gallery-prev-btn,
    .gallery-next-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .gallery-prev-btn {
        left: 5px;
    }
    
    .gallery-next-btn {
        right: 5px;
    }
    
    .gallery-dots {
        margin-top: 20px;
        gap: 6px;
    }
    
    .gallery-dot {
        width: 8px;
        height: 8px;
    }
    
    .gallery-dot.active {
        width: 20px;
        height: 8px;
    }
    
    .gallery-videos-section {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .gallery-videos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-videos-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
        padding-bottom: 12px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    /* Admission Section Mobile Fixes */
    .admission {
        padding: 60px 0;
    }
    
    .admission-process h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .process-steps {
        gap: 20px;
        margin-top: 30px;
    }
    
    .process-step {
        padding: 22px 18px;
        gap: 18px;
        border-radius: 12px;
    }
    
    .step-number {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
    
    .step-content h4 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }
    
    .step-content p {
        font-size: 0.93rem;
        line-height: 1.65;
    }
    
    .schedule-period {
        padding: 20px;
    }
    
    /* FAQ Section Mobile Fixes */
    .faq {
        padding: 60px 0;
    }
    
    /* Testimonials Section Mobile Fixes */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    /* Appointment Section Mobile Fixes */
    .appointment {
        padding: 60px 0;
        overflow-x: hidden;
        width: 100%;
    }
    
    .appointment-content {
        width: 100%;
        max-width: 100%;
        display: flow-root !important;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    
    .appointment-form {
        padding: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .appointment-info {
        padding: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Contact Section Mobile Fixes */
    .contact {
        padding: 60px 0;
        overflow-x: hidden;
        width: 100%;
    }
    
    .contact-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    
    .contact-info {
        padding: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-map {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    
    .contact-info .contact-item {
        background: linear-gradient(135deg, #f0f4f8, #e8f0f5);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .subsection-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .subsection-content {
        padding: 25px 20px !important;
        border-radius: 14px;
        margin: 0 10px;
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: none;
    }
    
    .subsection-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }
    
    .subsection-content p:first-child {
        font-size: 1.05rem;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .subsection-content p:nth-child(2) {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .subsection-content p:nth-child(3) {
        font-size: 0.9rem;
    }
    
    .subsection-content p:nth-child(4) {
        font-size: 0.95rem;
        margin-bottom: 15px;
        color: #444;
        font-weight: 400;
    }
    
    .subsection-content p:last-child {
        font-size: 0.95rem;
        padding-top: 18px;
        margin-top: 10px;
    }
    
    .philosophy-pillars {
        gap: 20px;
        margin-top: 25px;
        margin-bottom: 20px;
    }
    
    .pillar {
        padding: 25px 20px;
        border-radius: 14px;
    }
    
    .pillar h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .pillar p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .stat {
        padding: 20px 18px;
    }
    
    .stat h4 {
        font-size: 1.8rem;
    }
    
    .stat p {
        font-size: 0.9rem;
    }
    
    .philosophy-pillars {
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 25px;
    }
    
    .pillar {
        padding: 30px 25px;
        border-radius: 12px;
    }
    
    .pillar h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .pillar p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
        margin-top: 15px;
    }
    
    .section-header h2::after {
        width: 60px;
        height: 3px;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .appointment-content,
    .contact-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    
    .appointment-form,
    .appointment-info {
        padding: 20px 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-info {
        padding: 20px 0px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-map {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-item p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-map iframe {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 300px;
        box-sizing: border-box;
        display: block;
    }
    
    /* Extra small screen fixes */
    .hero p {
        font-size: 1rem;
        text-align: left;
        padding: 0 10px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .team-member-detailed {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .team-member-detailed .member-image {
        width: 120px;
        height: 120px;
    }
    
    .team-member-detailed .member-info h4 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .team-member-detailed .member-info p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .team-card-professional {
        border-radius: 15px;
    }
    
    .team-card-image-wrapper {
        padding: 25px 15px 15px;
    }
    
    .team-card-image {
        width: 200px;
        height: 250px;
        padding: 12px;
    }
    
    .team-card-content {
        padding: 25px 20px 30px;
    }
    
    .team-card-header {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .team-card-header h3 {
        font-size: 1.5rem;
    }
    
    .team-card-credentials {
        font-size: 1rem;
    }
    
    .team-card-title {
        font-size: 0.9rem;
    }
    
    .team-card-body p {
        font-size: 0.9rem;
        margin-bottom: 16px;
        text-align: justify;
    }
    
    .team-card-quote {
        padding: 15px 20px;
        font-size: 0.9rem !important;
    }
    
    .disorder-card,
    .addiction-card,
    .treatment-card,
    .treatment-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .disorder-card h4,
    .addiction-card h4,
    .treatment-card h4 {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .disorder-card p,
    .addiction-card p,
    .treatment-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Testimonials Slider Mobile Styles */
    .testimonials-slider-container {
        padding: 0 20px;
    }
    
    .testimonials-prev-btn,
    .testimonials-next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonials-prev-btn {
        left: -15px;
    }
    
    .testimonials-next-btn {
        right: -15px;
    }
    
    .testimonial-card {
        padding: 35px 25px;
    }
    
    .testimonial-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .testimonial-category {
        font-size: 0.9rem;
    }
    
    .symptom-category {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .symptom-category h5 {
        font-size: 1rem;
    }
    
    .symptom-category li {
        font-size: 0.9rem;
        line-height: 1.6;
        padding-left: 25px;
        padding-right: 10px;
        padding-top: 6px;
        padding-bottom: 6px;
    }
    
    .symptom-category li::before {
        left: 5px;
        font-size: 1rem;
    }
    
    .treatment-item li {
        padding-left: 25px;
        padding-right: 10px;
        padding-top: 6px;
        padding-bottom: 6px;
        line-height: 1.6;
    }
    
    .treatment-item li::before {
        left: 5px;
        font-size: 1rem;
    }
    
    .testimonials-list li {
        padding-left: 40px;
        padding-right: 15px;
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .testimonials-list li::before {
        left: 15px;
        font-size: 1.2rem;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
    }
    
    .admission-process {
        margin-bottom: 50px;
    }
    
    .admission-process h3 {
        font-size: 1.6rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .process-steps {
        gap: 18px;
        margin-top: 25px;
    }
    
    .process-step {
        padding: 20px 15px;
        gap: 15px;
        border-radius: 10px;
        border-left-width: 3px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        box-shadow: 0 3px 12px rgba(91, 155, 213, 0.25);
    }
    
    .step-content h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .step-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .schedule-period {
        padding: 15px;
    }
    
    .activity {
        padding: 10px;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    /* Services sections for very small screens */
    .services,
    .disorders-section,
    .addiction-section,
    .treatment-section,
    .why-choose-section {
        padding: 40px 0;
    }
    
    
    .why-choose-item {
        padding: 20px 15px;
    }
    
    .why-choose-item h5 {
        font-size: 1.1rem;
    }
    
    .why-choose-item p {
        font-size: 0.9rem;
    }
}

/* Additional Mobile Fixes for Content Display */
@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Ensure all content is visible */
    * {
        max-width: 100%;
    }
    
    /* Ensure all sections have proper spacing and display */
    section {
        min-height: auto;
        overflow: visible;
        position: relative;
        z-index: 1;
    }
    
    /* Fix any potential layout issues */
    .about,
    .services,
    .disorders-section,
    .addiction-section,
    .treatment-section,
    .why-choose-section,
    .team,
    .admission,
    .faq,
    .gallery,
    .testimonials,
    .appointment,
    .contact {
        position: relative;
        z-index: 1;
        width: 100%;
        overflow: visible;
    }
    
    /* Ensure text is readable on mobile */
    .subsection-content p,
    .disorder-card p,
    .addiction-card p,
    .treatment-card p,
    .treatment-item p {
        word-wrap: break-word;
        hyphens: auto;
        line-height: 1.6;
    }
    
    /* Fix any potential image display issues */
    .member-image img,
    .gallery-item img,
    .team-member-detailed .member-image img {
        max-width: 100%;
        /* height: auto; */
        object-fit: initial;
    }
    
    /* Ensure buttons are touch-friendly */
    .btn {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 20px;
    }
    
    /* Fix any potential overflow issues */
    .container {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        padding: 0 15px;
    }
    
    /* Ensure proper mobile display for all sections */
    .about-subsection,
    .team-leadership,
    .team-categories {
        width: 100%;
        overflow: visible;
    }
    
    /* Fix team member detailed cards on mobile */
    .team-member-detailed .member-info {
        width: 100%;
        overflow: visible;
    }
    
    .team-member-detailed .member-info h4 {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .team-member-detailed .member-info p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    /* Ensure services content displays properly */
    .disorders-section,
    .addiction-section,
    .treatment-section,
    .why-choose-section {
        width: 100%;
        overflow: visible;
    }
    
    /* Improve section headers on mobile */
    .section-header {
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.2;
        /* text-align: left; */
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 1rem;
        text-align: left;
        line-height: 1.5;
    }
    
    /* Move RCI text below main heading on mobile */
    .subsection-title .rci-registered {
        display: block;
        margin-top: 5px;
        margin-left: 0;
    }
    
    /* Ensure proper spacing between sections */
    section + section {
        margin-top: 0;
    }
    
    /* Fix navigation menu for mobile - ensure all items visible */
    .nav-menu {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 30px;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0;
        width: 100%;
        display: block;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 15px 30px;
        width: 100%;
        display: block;
        box-sizing: border-box;
    }
}
