
/* ========== GENERAL STYLES ========== */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #2c3e50;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
}

.btn {
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-primary {
    background-color: #3949AB;
    border-color: #3949AB;
}

.btn-primary:hover {
    background-color: #5C6BC0;
    border-color: #5C6BC0;
}

.btn-outline-primary {
    color: #3949AB;
    border-color: #3949AB;
}

.btn-outline-primary:hover {
    background-color: #3949AB;
    color: white;
}

.btn-outline-light {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background-color: white;
    color: #3949AB;
}

/* ========== SECTION STYLES ========== */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #3949AB;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #3949AB, #5C6BC0);
    margin: 0 auto 30px;
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #666;
}

/* ========== WELCOME PAGE STYLES ========== */
.welcome-container {
    width: 100%;
    overflow-x: hidden;
}

/* Hero Section */
.welcome-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background: linear-gradient(135deg, #1c2b64, #2844d1);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('/images/restaurant-bg.jpg') center/cover no-repeat;
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

/* Logo Container */
.logo-container {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    font-size: 36px;
    margin-right: 15px;
    background: linear-gradient(45deg, #ff9500, #ff5e3a);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255, 94, 58, 0.3);
}

.logo-text {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary, .btn-secondary {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #ff5e3a, #ff9500);
    border: none;
    color: white;
    box-shadow: 0 10px 20px rgba(255, 94, 58, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 94, 58, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Features Section */
.welcome-features {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff5e3a, #ff9500);
    margin: 20px auto 0;
    border-radius: 2px;
}

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

.feature-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

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

.feature-icon {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ff5e3a;
    background: linear-gradient(45deg, #ff9500, #ff5e3a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Journey Section */
.welcome-journey {
    padding: 100px 0;
    background-color: #ffffff;
}

.journey-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.journey-steps:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background-color: #e0e0e0;
}

.journey-step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 50px;
}

.journey-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff5e3a, #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(255, 94, 58, 0.3);
    z-index: 2;
}

.step-content {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Section */
.welcome-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1c2b64, #2844d1);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .welcome-hero {
        min-height: 600px;
    }
    
    .logo-text {
        font-size: 36px;
    }
    
    .hero-tagline {
        font-size: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-step {
        padding-left: 50px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #5C6BC0, transparent);
}

.hero-title span {
    display: block;
    color: #ffffff;
    font-weight: 800;
    position: relative;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-buttons .btn {
    padding: 14px 32px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #3949AB, #5C6BC0);
    border: none;
    box-shadow: 0 10px 30px rgba(57, 73, 171, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(57, 73, 171, 0.4);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-buttons .btn-outline-light:hover {
    background-color: white;
    color: #3949AB;
    border-color: white;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Stats section */
.hero-stats {
    display: flex;
    margin-top: 50px;
    gap: 30px;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Image section */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-image-container {
    position: relative;
    margin-top: 20px;
    z-index: 2;
    perspective: 1000px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 10px solid white;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
    transition: all 0.5s ease;
}

.hero-image-container:hover .hero-image {
    transform: rotate(-1deg) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-image-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: linear-gradient(135deg, #ff9800, #f44336);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-image-badge i {
    font-size: 16px;
    color: #fff9c4;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.scroll-indicator a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.scroll-indicator a:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.scroll-icon {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

/* ========== FEATURE CARDS ========== */
.feature-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3949AB, #5C6BC0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    margin-bottom: 0;
}

/* ========== CONTENT BOX ========== */
.content-box {
    padding: 20px;
}

.content-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.content-box h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #3949AB, #5C6BC0);
}

.feature-list {
    padding-left: 0;
    list-style: none;
}

.feature-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.feature-list li i {
    color: #3949AB;
    position: absolute;
    left: 0;
    top: 5px;
}

/* ========== SKILLS SECTION ========== */
.skills-image-container {
    position: relative;
    margin-bottom: 30px;
}

.skills-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(135deg, #3949AB, #5C6BC0);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.skills-badge span {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.skills-badge small {
    font-size: 14px;
    opacity: 0.8;
}

.skill-item {
    display: flex;
    margin-bottom: 25px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.skill-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.skill-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3949AB, #5C6BC0);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.skill-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.skill-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* ========== PARCOURS STEPS ========== */
.parcours-steps {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.step-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(57, 73, 171, 0.2);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #3949AB, #5C6BC0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3949AB, #5C6BC0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.step-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.parcours-connector {
    position: relative;
    text-align: center;
    padding: 40px 0;
    margin: 20px 0;
}

.connector-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #3949AB, transparent);
    z-index: 0;
}

.btn-toggle {
    position: relative;
    z-index: 1;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* ========== PEDAGOGY SECTION ========== */
.pedagogy-image-container {
    position: relative;
    margin-bottom: 30px;
}

.pedagogy-badge {
    position: absolute;
    top: -20px;
    left: 30px;
    background: linear-gradient(135deg, #3949AB, #5C6BC0);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.pedagogy-badge i {
    font-size: 24px;
    margin-right: 10px;
}

.pedagogy-badge span {
    font-size: 16px;
    font-weight: 600;
}

.pedagogy-feature {
    display: flex;
    margin-bottom: 25px;
}

.pedagogy-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3949AB, #5C6BC0);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.pedagogy-feature-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.pedagogy-feature-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* ========== TEACHER SECTION ========== */
.teacher-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

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

.teacher-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3949AB, #5C6BC0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
}

.teacher-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.teacher-card p {
    color: #666;
    margin-bottom: 0;
    font-size: 15px;
}

.teacher-testimonial {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 50px;
}

.teacher-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    padding-left: 30px;
}

.testimonial-content:before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    left: 0;
    top: -20px;
    color: #3949AB;
    opacity: 0.2;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: #3949AB;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, #1A237E, #3949AB);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.cta-text {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    margin-top: 30px;
}

/* ========== FOOTER ========== */
footer {
    background-color: #1A237E;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

footer h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
    padding-bottom: 15px;
}

footer h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #5C6BC0;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

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

.footer-contact {
    list-style: none;
    padding-left: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact li i {
    color: #5C6BC0;
    margin-right: 10px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .timeline:before {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
        left: 0 !important;
        text-align: left !important;
    }
    
    .timeline-dot {
        left: 20px !important;
        right: auto !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-icon {
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .feature-card, .skill-item, .timeline-card, .teacher-card {
        margin-bottom: 20px;
    }
    
    .teacher-testimonial {
        padding: 20px;
    }
    
    .teacher-image {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .testimonial-content {
        padding-left: 0;
    }
    
    .testimonial-content:before {
        display: none;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
