/* 
   Color Palette:
   #4c4c4c => dark grey
   #6c9eeb => blue
   #6cbf6e => green
   #f7c60a => yellow
   #f2f2f2 => light grey
*/

/* Base Styles */
:root {
    --dark-grey: #4c4c4c;
    --blue: #6c9eeb;
    --green: #6cbf6e;
    --yellow: #f7c60a;
    --light-grey: #f2f2f2;
    --white: #ffffff;
    --dark-blue: #394f6a;
    --light-blue: #e8f0fe;
    --light-green: #e8f5e9;
    --light-yellow: #fff8e1;
    --light-purple: #f3e5f5;
    --gradient-primary: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--dark-grey) 0%, var(--dark-blue) 100%);
    --box-shadow: 0 10px 30px rgba(108, 158, 235, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-grey);
    overflow-x: hidden;
    background-color: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--blue);
    transition: var(--transition);
}

a:hover {
    color: var(--green);
}

section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.container {
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-grey);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--dark-grey);
    font-weight: 400;
    font-size: 1.1rem;
    opacity: 0.8;
    margin-top: 15px;
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(108, 158, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 158, 235, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--dark-grey);
    border: 2px solid var(--blue);
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 158, 235, 0.2);
}

/* Navigation */
.navbar {
    padding: 20px 0;
    transition: all 0.4s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.navbar-sticky {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--dark-grey);
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.logo-text .name {
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
}

.logo-text .surname {
    font-weight: 300;
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-grey);
    margin: 0 15px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding-top: 150px;
    background: linear-gradient(to bottom right, var(--white), var(--light-blue));
    position: relative;
    overflow: hidden;
}

.hero-shape-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 158, 235, 0.1) 0%, rgba(108, 158, 235, 0) 70%);
    z-index: 1;
}

.hero-shape-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 191, 110, 0.1) 0%, rgba(108, 191, 110, 0) 70%);
    z-index: 1;
}

.hero-shape-3 {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 198, 10, 0.05) 0%, rgba(247, 198, 10, 0) 70%);
    z-index: 1;
}

.profile-img-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.profile-img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 10px 25px rgba(108, 158, 235, 0.25);
    z-index: 2;
    position: relative;
    transition: var(--transition);
    background-color: #fff;
}

.hero-text {
    padding: 20px;
}

.headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subheadline {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.signature {
    font-style: italic;
    opacity: 0.7;
    font-size: 1rem;
}

.highlight {
    color: var(--blue);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(108, 158, 235, 0.2);
    z-index: -1;
    border-radius: 10px;
}

/* Services Section */
.services {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(108, 158, 235, 0.1);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(108, 158, 235, 0.05) 100%);
    z-index: 0;
}

.services-shape-1 {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 158, 235, 0.1) 0%, rgba(108, 158, 235, 0) 70%);
    z-index: 1;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    opacity: 0.5;
    transition: var(--transition);
}

.service-card:hover::before {
    height: 10px;
    opacity: 1;
}

.service-card.featured {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(108, 158, 235, 0.2);
    border: 1px solid rgba(108, 158, 235, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(108, 158, 235, 0.2);
}

.service-title {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.service-subtitle {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-content {
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: var(--blue);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--green);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Core Principles */
.core-principles {
    margin-top: 50px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.principle-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.principle-card {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(108, 158, 235, 0.1);
    background-color: rgba(108, 158, 235, 0.03);
}

.principle-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
    opacity: 0.3;
    margin-bottom: 10px;
}

.principle-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.principle-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* FAQ Section */
.faq {
    background: linear-gradient(to bottom, var(--light-green), var(--white));
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.faq::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 158, 235, 0.05) 0%, rgba(108, 158, 235, 0) 70%);
    z-index: 0;
}

.accordion-item {
    border: none;
    margin-bottom: 0.8rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 20px rgba(108, 158, 235, 0.1);
    transform: translateY(-2px);
}

.accordion-button {
    background-color: white;
    color: var(--dark-grey);
    font-weight: 500;
    padding: 1.2rem 1.5rem;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: var(--blue);
    border-left: 4px solid var(--blue);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.125);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236c9eeb' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
    border-top: 1px solid rgba(0,0,0,0.03);
}

/* About Section */
.about {
    background-color: var(--light-blue);
    padding: 6rem 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(108, 158, 235, 0.1) 100%);
    z-index: 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.about-content:hover {
    box-shadow: 0 15px 40px rgba(108, 158, 235, 0.1);
    transform: translateY(-5px);
}

.about-link {
    color: var(--blue);
    position: relative;
    font-weight: 500;
}

.about-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--blue);
    transition: width 0.3s ease;
}

.about-link:hover::after {
    width: 100%;
}

/* Reading Section */
.reading {
    background-color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.reading::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 191, 110, 0.05) 0%, rgba(108, 191, 110, 0) 70%);
    z-index: 0;
}

.reading-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.03);
}

.reading-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(108,158,235,0.02) 0%, rgba(108,191,110,0.02) 100%);
    transition: height 0.5s ease;
    z-index: -1;
}

.reading-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 158, 235, 0.1);
}

.reading-card:hover::before {
    height: 100%;
}

.reading-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 10px;
}

.image-placeholder {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #999;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.7s ease;
    opacity: 0;
}

.reading-card:hover .image-placeholder::after {
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(30deg);
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    100% {
        transform: translateX(100%) rotate(30deg);
        opacity: 0;
    }
}

.reading-title {
    color: var(--blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.reading-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s ease;
}

.reading-card:hover .reading-title::after {
    width: 100%;
}

.reading-description {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.reading-link {
    color: var(--blue);
    font-size: 0.9rem;
    position: relative;
    font-weight: 500;
    display: inline-block;
}

.reading-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--blue);
    transition: width 0.3s ease;
}

.reading-link:hover::after {
    width: 100%;
}

/* Discussion Section */
.discussion {
    background: linear-gradient(to bottom, var(--light-green), rgba(108, 191, 110, 0.05));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.discussion::before {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 158, 235, 0.07) 0%, rgba(108, 158, 235, 0) 70%);
    z-index: 0;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(to bottom right, var(--light-yellow), rgba(247, 198, 10, 0.05));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-shape {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 191, 110, 0.1) 0%, rgba(108, 191, 110, 0) 70%);
    z-index: 1;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 2;
    height: 100%;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: rgba(108, 158, 235, 0.1);
    line-height: 1;
    font-family: 'Georgia', serif;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(108, 158, 235, 0.2);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.testimonial-title {
    font-size: 0.85rem;
    opacity: 0.7;
}

.testimonial-controls {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid rgba(108, 158, 235, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--blue);
}

.testimonial-control:hover {
    background-color: var(--blue);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(108, 158, 235, 0.3);
}

.testimonial-slider {
    position: relative;
    height: 250px;
    overflow: hidden;
}

/* Process Section */
.process {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    border-top: 1px solid rgba(108, 158, 235, 0.1);
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg, transparent 0%, rgba(108, 158, 235, 0.05) 100%);
    z-index: 0;
}

.process-steps {
    position: relative;
    z-index: 2;
}

.process-step {
    padding: 30px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(108, 158, 235, 0.15);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.7;
    transition: var(--transition);
}

.process-step:hover::before {
    width: 10px;
}

.process-number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(108, 158, 235, 0.1);
    line-height: 1;
}

.process-title {
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-size: 1.3rem;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.process-step:hover .process-title::after {
    width: 100%;
}

/* About Section */
.about {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-shape {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 158, 235, 0.1) 0%, rgba(108, 158, 235, 0) 70%);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
}

.experience-stats {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-card {
    background-color: var(--light-grey);
    border-radius: 15px;
    padding: 20px;
    min-width: 150px;
    flex: 1;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(108, 158, 235, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0.7;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-title {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Reading Section */
.reading {
    background-color: var(--light-grey);
    position: relative;
    overflow: hidden;
}

.reading-shape {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 191, 110, 0.1) 0%, rgba(108, 191, 110, 0) 70%);
    z-index: 1;
}

.article-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(108, 158, 235, 0.15);
}

.article-img-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-date {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 10px;
    font-weight: 500;
}

.article-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-grey);
    transition: var(--transition);
}

.article-card:hover .article-title {
    color: var(--blue);
}

.article-excerpt {
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
    flex-grow: 1;
}

.article-link {
    align-self: flex-start;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--blue);
    position: relative;
    transition: var(--transition);
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--blue);
    transition: var(--transition);
}

.article-card:hover .article-link::after {
    width: 100%;
}

/* Discussion Section */
.discussion {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.discussion-shape {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 158, 235, 0.1) 0%, rgba(108, 158, 235, 0) 70%);
    z-index: 1;
}

.discussion-card {
    background: var(--gradient-primary);
    border-radius: 15px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(108, 158, 235, 0.25);
    z-index: 2;
}

.discussion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png');
    opacity: 0.05;
    z-index: -1;
}

.discussion-title {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.discussion-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.btn-white {
    background-color: var(--white);
    color: var(--blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--blue);
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(57, 79, 106, 0.5), transparent);
    z-index: 0;
}

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo .logo-circle {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-text {
    opacity: 0.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-main{
    justify-content: space-around;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

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

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

.social-link:hover {
    background-color: var(--blue);
    transform: translateY(-5px);
    color: var(--white);
}

.footer-links h4 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blue);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 20px;
}

.footer-links a:hover::before {
    left: 5px;
    color: var(--white);
}

.copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 50px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .headline {
        font-size: 2rem;
    }
    .hero {
        padding-top: 100px;
        min-height: auto;
    }
    .profile-img {
        width: 200px;
        height: 200px;
    }
    .discussion-card {
        padding: 30px;
    }
    .service-card {
        margin-bottom: 30px;
    }
    .process-step {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 70px 0;
    }
    .hero-text {
        padding: 0;
        text-align: center;
    }
    .headline {
        font-size: 1.8rem;
    }
    .profile-img-wrapper {
        margin: 0 auto 30px;
        display: block;
        text-align: center;
    }
    .profile-img {
        width: 180px;
        height: 180px;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    .testimonial-img {
        margin: 0 auto 10px;
    }
    .stat-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 120px;
    }
    .headline {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    .process-step::before {
        width: 100%;
        height: 5px;
    }
    .testimonial-slider {
        height: 300px;
    }
    .stat-card {
        min-width: 100%;
    }
}

/* Calendar Section */
.calendar-section {
    background: linear-gradient(to top, var(--light-blue), var(--white));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.calendar-title {
    color: var(--dark-grey);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.calendar-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--blue);
}

.calendar-subtitle {
    color: #777;
    margin-bottom: 2rem;
}

.calendar-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.calendar-container:hover {
    box-shadow: 0 15px 40px rgba(108, 158, 235, 0.1);
    transform: translateY(-5px);
}

.calendar-placeholder {
    padding: 2rem;
    text-align: center;
}
