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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary-bg);
    overflow-x: hidden;
    background: #ffffff;
}

/* Custom Properties */
:root {
    --primary-bg: #10222e;
    --beige: #ebe8d9;
    --white: #ffffff;
    --white-soft: #f8f8f8;
    --white-warm: #fefefe;
    --white-cool: #fbfbfb;
    --text-primary: #ffffff;
    --text-secondary: #ebe8d9;
    --text-muted: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --border-radius-sm: 6px;
    --border-radius-lg: 20px;
}

/* Navigation */
.navbar {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: none;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(16, 34, 46, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled .navbar-logo{height: 40px;}

.navbar-brand {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.navbar-brand .nav-logo {
    color: var(--beige);
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    margin: 0;
}

.navbar-nav {
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-sm);
    letter-spacing: 0.5px;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--beige);
    background: rgba(235, 232, 217, 0.1);
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--beige);
    border-radius: 2px;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem 0.75rem;
    margin-left: 1rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--beige);
    outline-offset: 2px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28235, 232, 217, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hamburger menu removed - using Bootstrap navbar */

/* Hero Section */
.hero {
    background: var(--primary-bg);
    color: var(--text-primary);
    padding: 250px 0 40px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(255, 111, 97, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(237, 116, 210, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(166, 83, 156, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(34, 86, 122, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 25% 25%, rgba(4, 25, 59, 0.3) 0%, transparent 50%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="dots" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
    animation: float 25s ease-in-out infinite reverse;
    pointer-events: none;
}

/* Particle animations removed - not used */

/* Particle keyframes removed */

.hero {
    padding-top: 120px;
}

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

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    position: relative;
    color: var(--white);
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.7;
    font-weight: 400;
    max-width: 600px;
    position: relative;
    color: var(--text-secondary);
}

.hero-subtitle::before {
    content: '✨';
    position: absolute;
    left: -30px;
    top: 0;
    font-size: 1.2rem;
    opacity: 0.8;
}

.hero-subtitle::after {
    content: '🚀';
    position: absolute;
    right: -30px;
    bottom: 0;
    font-size: 1.2rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #f97316);
    color: white;
    box-shadow: var(--shadow-lg);
    border: none;
    font-weight: 700;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b, #f97316, #ea580c);
}

.btn-xs {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-secondary {
    background: transparent;
    color: var(--beige);
    border: 2px solid var(--beige);
    backdrop-filter: blur(20px);
    font-weight: 600;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-secondary:hover::before {
    transform: translateX(0);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Hero visual removed - not used */

.hero-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

/* Hero visual icon removed - not used */

/* Floating elements removed - not used */

/* Element animations removed - not used */

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-25px) rotate(8deg) scale(1.1); 
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
    }
    50% { 
        transform: scale(1.05); 
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    }
}

/* Statistics Section */
.stats-section {
    background: var(--white-cool);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stats-section {
    padding: 100px 0;
    background: var(--white-cool);
}

.stat-item {
    text-align: center;
    color: var(--primary-bg);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number-container, 
.stat-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--primary-bg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Stat number after pseudo-elements removed */

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Counter Animation */
.stat-number-container, 
.stat-number {
    transition: all 0.3s ease;
}

.stat-number.animate {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Section Styles */
.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-bg);
    letter-spacing: -0.025em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Why Choose Us Section */
.why-us {
    padding: 100px 0;
    background: var(--white-cool);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.why-us {
    padding: 100px 0;
    background: var(--white-cool);
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-image {
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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


.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--beige);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 2px solid var(--beige);
    transition: all 0.3s ease;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.3; }
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--beige);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(235, 232, 217, 0.3);
    border-color: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-bg);
}

.feature-card p {
    color: var( --primary-bg);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: var(--white);
}

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

/* Updated Timeline Styles - Integrated with CodePen */
.timeline__content {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}



.timeline__image{transition: all 0.3s ease;}

.timeline__wrap {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline__image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.timeline__image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.timeline__image:hover img {
    transform: scale(1.05);
}

.timeline__wrap:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--beige);
}

.timeline__wrap h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-bg);
    margin-top: 1rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.timeline__wrap p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

.timeline__footer {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--primary-bg);
    border-radius: var(--border-radius);
    color: var(--white);
    max-width: 600px;
    margin: auto;
}

.timeline__footer h2 {
    color: var(--beige);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

/* Timeline Animation States */
.timeline.is-loading .timeline__item {
    opacity: 0;
    transform: translateY(30px);
}

.timeline.is-init .timeline__item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.timeline__item.is-below {
    opacity: 0.3;
    transform: translateY(20px);
}

.timeline__item.is-current {
    opacity: 1;
    transform: translateY(0);
}

.timeline__item.is-above {
    opacity: 0.8;
    transform: translateY(0);
}

.timeline__item.is-visible {
    opacity: 1;
}

.timeline__footer.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline__footer {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

/* Enhanced Timeline Styling from CodePen */
.timeline {
    display: flex;
    flex-direction: column;
    padding: 60px 0 0 0;
    position: relative;
    z-index: 1;
}
.timeline::after{
    background-color: #dddddd;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    width: 1px;
    height: 100%;
    margin: auto;
}


.timeline__track {
    background: var(--primary-bg);
    background-clip: content-box;
    height: 100%;
    left: 30px;
    min-height: 9px;
    max-height: 100%;
    padding: 0 5px 7px;
    position: absolute;
    top: 0;
    width: 14px;
    z-index: -1;
    border-radius: 7px;
}

@media screen and (min-width: 992px) {
    .timeline__track {
        left: calc(50% - 7px);
    }
    .timeline__content > .row > div{padding-left: 30px;padding-right: 30px;}
}

.timeline__track::after {
    background: #0f222e;
    border-radius: 50%;
    bottom: 0;
    content: "";
    height: 14px;
    left: 0;
    position: absolute;
    width: 14px;
}

.timeline__item {
    padding-top: 20px;
    padding-left: 30px;
    position: relative;
    width: 100%;
}

@media screen and (min-width: 992px) {
    .timeline__item {
        padding-left: 0;
        width: 100%;
        margin-bottom: 4rem;
    }
}



.timeline__line {
    background: #dddddd;
    color: #ffffff;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    z-index: 3;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
}


/* Removed old timeline image styles - now handled by .timeline__image */

@media screen and (max-width: 991.9px) {
    .timeline__footer {
        padding-left: 30px;
    }
    .timeline__wrap{margin-top: 20px;}
    .timeline__track{left: -6px;}
    .timeline::after{left: 0;right: initial;}
    .timeline__line{left: -18px;right: initial;margin: auto;}
}

.timeline.is-init .timeline__image, 
.timeline.is-init .timeline__wrap {
    opacity: 0;
    transform: translateY(-20px);
    transition: transform 0.5s, opacity 0.2s;
    will-change: opacity, transform;
}

.timeline.is-init .timeline__footer {
    opacity: 0;
    transition: opacity 0.2s;
    will-change: opacity;
}

.timeline.is-loading .timeline__line, 
.timeline.is-loading .timeline__image, 
.timeline.is-loading .timeline__wrap, 
.timeline.is-loading .timeline__footer {
    transition: none;
}

.timeline .is-visible .timeline__line {
    background: #192b37;
}

.timeline .is-visible .timeline__image,
.timeline .is-visible .timeline__wrap {
    opacity: 1;
    transform: translateY(0);
}

.timeline .is-visible.timeline__footer {
    opacity: 1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--white-cool);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--beige);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--beige);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
}

.quote-icon {
    color: var(--primary-bg);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
    position: relative;
}

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

.author-image {
    flex-shrink: 0;
}

.author-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--beige);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-bg);
    margin: 0 0 0.25rem 0;
}

.author-title {
    font-size: 0.95rem;
    color: var(--primary-bg);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.author-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.author-location i {
    color: var(--primary-bg);
    font-size: 0.8rem;
}

/* Where Our Experts Work Section */
.experts-companies-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.companies-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.slider-track {
    display: flex;
    animation: slide 30s linear infinite;
    width: calc(200% + 2rem);
}

.slider-item {
    flex: 0 0 auto;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.slider-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--beige);
}

.company-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.slider-item:hover .company-logo {
    filter: grayscale(0%) opacity(1);
}

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

/* Meet the Experts Section */
.meet-experts-section {
    padding: 100px 0;
    background: var(--white-cool);
}

.expert-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 400px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.expert-bg-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.expert-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.expert-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(16, 34, 46, 0.9));
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    align-items: flex-end;
}

.expert-info-card {
    background: transparent;
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 1rem;
    width: 100%;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.expert-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.expert-title, .expert-info-card p {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Timeline Responsive */
@media (max-width: 768px) {
    .timeline__item {
        padding-left: 30px;
        margin-bottom: 2rem;
    }
    
    .timeline__line {
        left: -18px;
        top: 20px;
    }
    
    .timeline__content {
        margin-bottom: 2rem;
    }
    
    .timeline__wrap {
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    .timeline__image {
        margin-bottom: 1rem;
    }
    
    .timeline__image img {
        height: 250px;
    }
    
    .timeline__wrap h2 {
        font-size: 1.5rem;
    }
    
    .timeline__wrap p {
        font-size: 1rem;
    }
}

/* Testimonials Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .author-image img {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 1.1rem;
    }
    
    .author-title {
        font-size: 0.9rem;
    }
}

/* Companies Slider Responsive */
@media (max-width: 768px) {
    .slider-item {
        width: 150px;
        height: 100px;
        margin: 0 0.5rem;
    }
    
    .company-logo {
        max-height: 60px;
    }
    
    .slider-track {
        animation-duration: 25s;
    }
}

/* Experts Slider */
.experts-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.experts-slider {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.experts-track {
    display: flex;
    transition: transform 0.5s ease;
}

.expert-slide {
    min-width: 33.333%;
    padding: 0 10px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--beige);
    color: var(--primary-bg);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.slider-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

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

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

.dot.active {
    background: var(--beige);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Meet the Experts Responsive */
@media (max-width: 1200px) {
    .expert-slide {
        min-width: 50%; /* Show 2 slides on medium screens */
    }
}

@media (max-width: 768px) {
    .expert-slide {
        min-width: 50%; /* Show 2 slides on mobile */
    }
    
    .expert-card {
        height: 350px;
    }
    
    .expert-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .expert-info-card {
        padding: 1.2rem;
    }
    
    .expert-name {
        font-size: 1.1rem;
    }
    
    .expert-title {
        font-size: 0.8rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .experts-slider-container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .expert-slide {
        min-width: 100%; /* Show 1 slide on very small screens */
    }
}

/* Services Preview Section */
.services-preview {
    padding: 100px 0;
    background: var(--primary-bg);
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.services-preview {
    padding: 100px 0;
    background: var(--primary-bg);
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-image {
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-img, .service-main-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img,
.service-card:hover .service-main-img {
    transform: scale(1.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--beige);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--beige);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-bg);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.learn-more {
    color: var(--beige);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    background: rgba(59, 130, 246, 0.1);
}

.learn-more:hover {
    color: var(--primary-dark);
    background: rgba(59, 130, 246, 0.15);
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.05)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

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

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--primary-bg);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer {
    padding: 80px 0 30px;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: var(--white);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--beige);
    font-weight: 700;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-section p {
    margin-bottom: 0.75rem;
    opacity: 0.9;
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: inline-block;
    border-radius: var(--border-radius-sm);
}

.footer-section ul li a:hover {
    color: var(--beige);
    background: rgba(235, 232, 217, 0.1);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.footer-section i {
    margin-right: 0.75rem;
    color: var(--beige);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--beige);
    text-decoration: none;
}

.footer-bottom .separator {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer-bottom .d-flex {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Terms and Conditions Page Styles */
.terms-content {
    padding: 80px 0;
    background: var(--white-cool);
}

.terms-wrapper {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.terms-section {
    margin-bottom: 2.5rem;
}

.terms-section h2 {
    color: var(--primary-bg);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--beige);
}

.terms-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.terms-section ul {
    color: var(--text-muted);
    line-height: 1.7;
    padding-left: 1.5rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
}

.terms-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.terms-update p {
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* Terms page responsive */
@media (max-width: 768px) {
    .terms-wrapper {
        padding: 2rem;
        margin: 0 15px;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-content {
        padding: 60px 0;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 140px 0 100px;
    margin-top: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* About Page Styles */
.our-story {
    padding: 80px 0;
}


.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.story-visual {
    text-align: center;
    position: relative;
}

.story-main-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
	background-color: #959595;
}

.story-visual i {
    font-size: 8rem;
    color: #667eea;
}

.story-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Story elements removed - not used */

.mission-vision {
    padding: 80px 0;
    background: #f9fafb;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.mission-card,
.vision-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.mission-card p,
.vision-card p {
    color: #6b7280;
    line-height: 1.6;
}

.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background: #f9fafb;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-avatar i {
    font-size: 2.5rem;
    color: white;
}

.team-member h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.team-member p {
    color: #6b7280;
    line-height: 1.6;
}

.different-section {
    padding: 80px 0;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.different-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.different-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.different-icon i {
    font-size: 1.5rem;
    color: white;
}

.different-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.different-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Services Page Styles */
.services-overview {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.02);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.pricing-section .pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card-body {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1;
    height: 100%;
}

/* Featured Cards */
.pricing-card-featured {
    border-width: 3px;
    border-color: #0d6efd;
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.2);
}

.pricing-card-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.3);
}

.pricing-card-best {
    border-color: #dc3545;
}

/* Badges */
.featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0d6efd;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.best-value-badge {
    background: #dc3545;
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc3545;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Pricing Title */
.pricing-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
    line-height: 1.3;
}

/* Price Display */
.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-euro {
    font-size: 3rem;
    font-weight: 800;
    color: #0d6efd;
    line-height: 1;
}

.featured-price {
    color: #ffc107;
}

.price-inr {
    background: #f3f4f6;
    color: #6b7280;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Pricing Description */
.pricing-description {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Pricing Features */
.pricing-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-features li i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1rem;
}

/* Pricing Button */
.pricing-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    color: #0d6efd;
    border: 2px solid #0d6efd;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    flex-shrink: 0;
}

.pricing-btn:hover {
    background: #0d6efd;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.featured-btn {
    background: #ffc107;
    border-color: #ffc107;
    color: white;
}

.featured-btn:hover {
    background: #ff9800;
    border-color: #ff9800;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.package-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
    margin: 0 auto 1.5rem auto;
}

.package-icon i {
    font-size: 1.8rem;
    color: white;
}

.pricing-card:hover .package-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.5);
}

.package-icon-featured {
    background: linear-gradient(135deg, #ffc107, #ff9800) !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.pricing-card:hover .package-icon-featured {
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-accordion-wrapper {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.faq-section .accordion-item {
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-section .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-section .accordion-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: #0d6efd;
}

.faq-section .accordion-button {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
    background: white;
    padding: 1.5rem 2rem;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
}

.faq-section .accordion-button::before {
    content: '?';
    position: absolute;
    left: 1.5rem;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-section .accordion-button {
    padding-left: 4.5rem;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
    color: #0d6efd;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed)::before {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: white;
    transform: rotate(0deg);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%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");
    background-size: 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

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

.faq-section .accordion-body {
    padding: 1.5rem 2rem 2rem 4.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    background: white;
    border-top: 1px solid #f3f4f6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Experts Page Styles */
.expert-categories {
    padding: 40px 0;
    background: #f9fafb;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-tab.active,
.category-tab:hover {
    border-color: #2563eb;
    background: #2563eb;
    color: white;
}

.experts-grid {
    padding: 80px 0;
}

.experts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.expert-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.expert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.expert-card:hover::before {
    transform: scaleX(1);
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.expert-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.expert-image i {
    font-size: 4rem;
    color: #667eea;
}

.expert-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.expert-title {
    font-weight: 500;
    margin-bottom: 1rem;
}

.expert-bio {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.expert-expertise {
    margin-bottom: 1.5rem;
}

.expertise-tag {
    display: inline-block;
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    margin: 0.25rem;
}

.expert-achievements p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.expert-guide {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guide-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.guide-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.guide-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.guide-item p {
    color: #6b7280;
    line-height: 1.6;
}

.success-metrics {
    padding: 80px 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.metric-item {
    text-align: center;
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.metric-item p {
    color: #6b7280;
    font-weight: 500;
}

/* Contact Page Styles */
.contact-form-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 2rem;
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    overflow: hidden;
    z-index: 10;
}

/* Mobile responsive sticky behavior */
@media (max-width: 991.98px) {
    .contact-info {
        position: static;
        top: auto;
        margin-bottom: 2rem;
    }
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.contact-info p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.25rem;
    color: white;
}

.method-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.method-details p {
    color: #6b7280;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.social-links h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #2563eb;
    color: white;
}

.contact-form {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: block;
    visibility: visible;
    opacity: 1;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.contact-form h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.form {
    display: flex;
    flex-direction: column;
    visibility: visible;
    opacity: 1;
    gap: 1rem;
}

.contact-form .form-control,
.form-control {
    width: 100% !important;
    padding: 0.6rem 0.8rem !important;
    border: 2px solid #6b7280 !important;
    border-radius: 0.375rem !important;
    font-size: 0.95rem !important;
    background: #ffffff !important;
    color: #1a202c !important;
    transition: all 0.3s ease !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.contact-form .form-control:focus,
.contact-form textarea:focus,
.form-control:focus {
    outline: none !important;
    border-color: #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

.contact-form textarea,
textarea.form-control {
    border: 2px solid #6b7280 !important;
    border-radius: 0.375rem !important;
    padding: 0.6rem 0.8rem !important;
    font-size: 0.95rem !important;
    background: #ffffff !important;
    color: #1a202c !important;
    transition: all 0.3s ease !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    resize: vertical !important;
    min-height: 80px !important;
}

.contact-form .form-select,
.form-select {
    width: 100% !important;
    padding: 0.6rem 0.8rem !important;
    border: 2px solid #6b7280 !important;
    border-radius: 0.375rem !important;
    font-size: 0.95rem !important;
    background: #ffffff !important;
    color: #1a202c !important;
    transition: all 0.3s ease !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.contact-form .form-select:focus,
.form-select:focus {
    outline: none !important;
    border-color: #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

.form-label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: var(--text-primary);
    visibility: visible;
    opacity: 1;
    font-size: 0.9rem;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    min-width: 180px;
    display: block;
    visibility: visible;
    opacity: 1;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 43, 55, 0.3);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
}
.form-group p br {
    display: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #2563eb;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #2563eb;
    border-radius: 50%;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    border-color: #2563eb;
    background: #2563eb;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.contact-faq {
    padding: 80px 0;
    background: #f9fafb;
}

.office-hours {
    padding: 80px 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hours-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.hours-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.hours-item p {
    color: #6b7280;
}

/* Success Stories Page Styles */
.success-overview {
    padding: 80px 0;
    background: #f9fafb;
}

.overview-content {
    text-align: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.overview-content p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number-container, 
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6b7280;
    font-weight: 500;
}

.featured-stories {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.featured-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.featured-stories::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.featured-stories .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.featured-stories .section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: #000000;
    font-size: 1.1rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.story-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.story-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: 0;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f59e0b);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card:hover::before {
    transform: scaleX(1);
}

.story-card.featured {
    border: 2px solid #667eea;
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.story-card.featured::after {
    content: '⭐ Featured';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.story-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.story-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f59e0b);
}

.story-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    position: relative;
}

.story-avatar::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f59e0b);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

.story-avatar i {
    font-size: 1.8rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.story-meta h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #0f172a;
    letter-spacing: -0.025em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.story-title {
    color: #667eea;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.story-location {
    color: #475569;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.story-location::before {
    content: '📍';
    font-size: 1rem;
    color: #f59e0b;
}

.story-content p {
    color: #1e293b;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-style: italic;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 6px solid #667eea;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    font-weight: 500;
    text-align: justify;
    hyphens: auto;
}

.story-content p::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 1.5rem;
    font-size: 4rem;
    color: #667eea;
    font-family: serif;
    opacity: 0.4;
    font-weight: 300;
}

.story-content p::after {
    content: '"';
    position: absolute;
    bottom: -15px;
    right: 1.5rem;
    font-size: 4rem;
    color: #667eea;
    font-family: serif;
    opacity: 0.4;
    font-weight: 300;
}

.story-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
}

.story-details::before {
    content: '📊';
    position: absolute;
    top: -15px;
    left: 2rem;
    font-size: 2rem;
    background: white;
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.detail-item {
    font-size: 1rem;
    color: #374151;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.detail-item:hover {
    background: #f8fafc;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.detail-item:hover::before {
    width: 8px;
}

.detail-item strong {
    color: #1e293b;
    font-weight: 700;
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #667eea;
}

.detail-item:not(:last-child) {
    margin-bottom: 0.5rem;
}

.industry-stories {
    padding: 80px 0;
    background: #f9fafb;
}

.industry-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.industry-tab {
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.industry-tab.active,
.industry-tab:hover {
    border-color: #2563eb;
    background: #2563eb;
    color: white;
}

.industry-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industry-story {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.industry-story h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.industry-story p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.success-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.success-metrics span {
    background: #f3f4f6;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.testimonials {
    padding: 80px 0;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.testimonial {
    display: none;
    text-align: center;
}

.testimonial.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6b7280;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.before-after {
    padding: 80px 0;
}

.transformation-grid {
    margin-top: 3rem;
}

.transformation-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

.before-section,
.after-section {
    padding: 2rem;
}

.before-section {
    background: #fef2f2;
    border-bottom: 1px solid #e5e7eb;
}

.after-section {
    background: #f0fdf4;
}

.before-section h3,
.after-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.before-section h3 {
    color: #dc2626;
}

.after-section h3 {
    color: #16a34a;
}

.before-section ul,
.after-section ul {
    list-style: none;
}

.before-section li,
.after-section li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.before-section li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.after-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

/* Booking Modal Styles */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal.active {
    display: flex;
    opacity: 1;
}

.booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.booking-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 10000;
}

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

.booking-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: #f3f4f6;
    color: #1f2937;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10001;
}

.booking-modal-close:hover {
    background: #ef4444;
    color: white;
    transform: rotate(90deg);
}

.booking-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.tidycal-embed {
    min-height: 500px;
}

.testimonials-section .testimonial-slider.slick-slider .slick-prev {
    background: var(--beige);
    color: var(--primary-bg);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-md);
	left: 10px;
}
.testimonials-section .testimonial-slider.slick-slider .slick-prev::before {
    color: var(--primary-bg);
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.testimonials-section .testimonial-slider.slick-slider .slick-next {
    background: var(--beige);
    color: var(--primary-bg);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-md);
	right: 10px;
}
.testimonials-section .testimonial-slider.slick-slider .slick-next::before {
    color: var(--primary-bg);
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.testimonials-section .testimonial-slider.slick-slider .slick-slide {
    margin: 0px 10px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .booking-modal-content {
        width: 95%;
        padding: 1.5rem;
        max-height: 95vh;
    }
    
    .booking-modal-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .booking-modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Resources Page Styles */
.category-tab.active {
    background: #0d6efd !important;
    color: white !important;
    border-color: #0d6efd !important;
}

.resource-card {
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: #0d6efd;
}

.resource-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
}

.resource-icon i {
    font-size: 1.8rem;
    color: white;
}

.resource-card:hover .resource-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.5);
}


/* New Experts Section with Filters */
.experts-section {
    padding: 60px 0;
    background: #f9fafb;
}

/* Filters Sidebar */
.filters-sidebar {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

/* Accordion Customization */
.filters-sidebar .accordion {
    margin-top: 20px;
}

.filters-sidebar .accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.filters-sidebar .accordion-button {
    background: #f9fafb;
    color: #1f2937;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 18px;
    border: none;
    box-shadow: none !important;
}

.filters-sidebar .accordion-button i {
    margin-right: 10px;
    color: var(--primary-color);
}

.filters-sidebar .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
    color: #1f2937;
}

.filters-sidebar .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23667eea'%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");
}

.filters-sidebar .accordion-body {
    padding: 18px;
    background: white;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
}

.filters-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.btn-reset-filters {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-reset-filters:hover {
    background: rgba(251, 191, 36, 0.1);
}

.filter-group {
    margin-bottom: 24px;
}

.filter-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.filter-label i {
    margin-right: 8px;
    color: var(--primary-color);
}

.filter-group .form-control,
.filter-group .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.filter-group .form-control:focus,
.filter-group .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.checkbox-group {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 8px;
}

.checkbox-group::-webkit-scrollbar {
    width: 6px;
}

.checkbox-group::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.checkbox-group::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.checkbox-group::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.checkbox-group .form-check,
.radio-group .form-check {
    margin-bottom: 12px;
}

.checkbox-group .form-check-label,
.radio-group .form-check-label {
    font-size: 0.9rem;
    color: #4b5563;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.checkbox-group .badge,
.radio-group .badge {
    font-size: 0.8rem;
    padding: 4px 12px;
    font-weight: 600;
}

/* Level Badges in Filters */
.badge-medio {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
}

.badge-new {
    background: linear-gradient(135deg, #34d399, #10b981);
    color: white;
}

.badge-senior {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: white;
}

.badge-top {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

/* Experts Results */
.experts-results {
    background: transparent;
}

.experts-results .row {
    display: flex;
    flex-wrap: wrap;
}


.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.results-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.sort-select {
    width: auto;
    min-width: 200px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.9rem;
}

/* Expert Card - New Design */
.expert-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}


/* Level Badge on Card */
.badge-level {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Expert Image Wrapper */
.expert-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.expert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
	object-position: top center;
}

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

.expert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 24px;
}

.expert-card:hover .expert-overlay {
    opacity: 1;
}

.btn-view-profile {
    background: white;
    color: #1f2937;
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.expert-card:hover .btn-view-profile {
    transform: translateY(0);
}

.btn-view-profile:hover {
    background: var(--primary-color);
    color: white;
}

/* Expert Details */
.expert-details {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.expert-details .btn {
    margin-top: auto;
}

.expert-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

/* Expert name color override for experts page */
.experts-section .expert-name {
    color: #1f2937;
}

.expert-tagline {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.5;
}

/* Expert Rating */
.expert-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.expert-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.rating-count {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-left: 8px;
}

/* Expert Specializations */
.expert-specializations {
    margin-bottom: 16px;
}

.spec-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.spec-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.spec-tag {
    background: #f3f4f6;
    color: #4b5563;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Expert Stats */
.expert-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
}

.expert-stats .stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.expert-stats .stat-item strong {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expert-stats .stat-item span {
    font-size: 1.1rem;
    color: #1f2937;
    font-weight: 700;
}

/* Expert Info Text */
.expert-info-text {
    margin-bottom: 16px;
    padding: 12px 0;
    background: #ffffff;
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
}

.expert-info-text p {
    margin-bottom: 8px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4b5563;
}

.expert-info-text p:last-child {
    margin-bottom: 0;
}

.expert-info-text strong {
    color: #1f2937;
    font-weight: 600;
}

/* Expert Meta */
.expert-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.expert-meta span {
    font-size: 0.85rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

.expert-meta i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 48px;
	text-align: center;
}

.pagination {
    gap: 8px;
}

.page-item .page-link {
    border: 2px solid #800020;
    color: #800020;
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: white;
}

.page-item.active .page-link {
    background: #800020;
    border-color: #800020;
    color: white;
    box-shadow: 0 4px 12px rgba(128, 0, 32, 0.3);
}

.page-item .page-link:hover {
    background: #800020;
    border-color: #800020;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 0, 32, 0.3);
}

.page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #9ca3af;
}
.pagination-wrapper a.page-numbers {
    border: 2px solid var(--primary-bg);
    color: var(--primary-bg);
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: white;
    text-decoration: none;
}
.pagination-wrapper span.page-numbers.current {
    border: 2px solid var(--primary-bg);
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: not-allowed;
    background: var(--primary-bg);
    border-color: var(--primary-bg);
    color: white;
    box-shadow: 0 4px 12px rgba(128, 0, 32, 0.3);
}
.pagination-wrapper a.page-numbers:hover {
    background: var(--primary-bg);
    border-color: var(--primary-bg);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 0, 32, 0.3);
}

/* Filter Loader Styles */
.filter-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.filter-loader.active {
    display: flex;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f4f6;
    border-top: 5px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

.filter-loader p {
    color: #1f2937;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.5px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Experts results container positioning */
.experts-results {
    position: relative;
    min-height: 400px;
}

.experts-results.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Loader responsive */
    .filter-loader {
        padding: 2rem 1.5rem;
        width: 90%;
        max-width: 300px;
    }
    
    .loader-spinner {
        width: 50px;
        height: 50px;
        border-width: 4px;
        margin-bottom: 1rem;
    }
    
    .filter-loader p {
        font-size: 1rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        padding: 0.25rem 0;
    }
    
    .navbar-brand .nav-logo {
        font-size: 1.75rem;
    }
    
    .navbar-logo {
        height: 45px;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
        text-align: center;
    }
    
    .navbar-toggler {
        margin-left: 0.5rem;
        padding: 0.375rem 0.5rem;
    }
    
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }
    
    .hero-container,
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-main-image {
        height: 250px;
    }
    
    .feature-img,
    .service-img,
    .service-main-img {
        height: 150px;
    }
    
    .story-main-image {
        height: 200px;
    }
    
    .hero-title,
    .page-header h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-subtitle::before,
    .hero-subtitle::after {
        display: none;
    }
    
    .hero-visual i {
        font-size: 8rem;
    }
    
    /* Element responsive styles removed - not used */
}

/* Section-specific title colors */
.why-us .section-title,
.stats-section .section-title {
    color: var(--primary-bg);
    text-shadow: none;
}

.services-preview .section-title,
.cta-section .section-title {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-card {
        padding: 2rem;
    }
    
    .story-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .story-details {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .story-content p {
        padding: 1.5rem;
        font-size: 1rem;
        text-align: left;
    }
    
    .story-meta h3 {
        font-size: 1.4rem;
    }
    
    .story-title {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .story-location {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Statistics Section Mobile */
    .stats-section {
        padding: 60px 0;
        background-color: #f1f1f1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
		position: relative;
    	height: 100%;
    }
    
    .stat-number-container, 
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .features-grid,
    .services-grid,
    .values-grid,
    .team-grid,
    .experts-container,
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        height: 70px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .different-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-card-body {
        padding: 2rem 1.5rem;
		padding-top: 3.5rem;
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-8px);
    }
    
    .package-badge {
        font-size: 0.65rem;
        padding: 5px 10px;
        top: 20px;
        right: 5px;
    }
    
    .featured-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    .package-icon {
        width: 60px;
        height: 60px;
    }
    
    .package-icon i {
        font-size: 1.5rem;
    }
    
    .pricing-title {
        font-size: 1.1rem;
    }
    
    .price-euro {
        font-size: 2.5rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
    }
    
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-accordion-wrapper {
        margin: 2rem auto 0;
    }
    
    .faq-section .accordion-item {
        margin-bottom: 1rem;
    }
    
    .faq-section .accordion-button {
        font-size: 1rem;
        padding: 1.25rem 1rem;
        padding-left: 3.5rem;
    }
    
    .faq-section .accordion-button::before {
        left: 1rem;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .faq-section .accordion-body {
        padding: 1rem 1rem 1.5rem 3.5rem;
        font-size: 0.95rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-stories-grid {
        grid-template-columns: 1fr;
    }
    


/* Enhanced animations and effects */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

.feature-card,
.service-card,
.expert-card,
.story-card,
.resource-card {
    animation: fadeInUp 0.8s ease-out;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.nav-link:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.expert-card:hover .expert-image i,
.story-card:hover .story-avatar,
.resource-card:hover .resource-icon {
    transform: scale(1.1);
}

.expert-image i,
.story-avatar,
.resource-icon {
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
	.hero-title {font-size: 3rem;}
}

@media (max-width: 992px) {
	.navbar.nav-open {background: rgba(16, 34, 46, 0.95);}
	.navbar.nav-open .navbar-collapse {margin-top: 20px;}
	.hero .hero-content {margin-bottom: 20px;}
	.filters-sidebar {margin-bottom: 30px;}
}

@media (max-width: 767px) {
	.hero {padding-top: 90px;}
}

@media (max-width: 480px) {
    .hero-title,
    .page-header h1, .section-title, .cta-content h2, .contact-info h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Statistics Section Small Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.25rem 1rem;
    }
    
    .stat-number-container, 
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .category-tabs,
    .industry-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tab,
    .industry-tab {
        width: 100%;
        max-width: 300px;
    }
}

