.featured-jobs {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Proxima Nova', sans-serif;
    min-height: 500px;
}

.featured-jobs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/pattern.svg') repeat;
    opacity: 0.1;
}

.section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Graphik', sans-serif;
    position: relative;
}

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

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.featured-job-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(78, 204, 163, 0.1) 0%, rgba(28, 130, 173, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(78, 204, 163, 0.3);
}

.featured-job-card:hover::before {
    opacity: 1;
}

.featured-job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.company-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(78, 204, 163, 0.3);
    padding: 0.25rem;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.featured-job-card:hover .company-logo {
    border-color: #4ecca3;
    transform: scale(1.05);
}

.company-details h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-family: 'Graphik', sans-serif;
}

.job-type {
    color: #4ecca3;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Proxima Nova', sans-serif;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(78, 204, 163, 0.1);
    border-radius: 50%;
    border-top-color: #4ecca3;
    animation: spin 1s ease-in-out infinite;
    position: relative;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.salary-badge {
    background: rgba(78, 204, 163, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    border: 1px solid rgba(78, 204, 163, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    text-align: center;
    white-space: nowrap;
}

.salary-range {
    color: #4ecca3;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Graphik', sans-serif;
    line-height: 1;
}

.currency {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(78, 204, 163, 0.8);
    line-height: 1;
    font-family: 'Proxima Nova', sans-serif;
}

.salary-period {
    color: rgba(78, 204, 163, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1;
    font-family: 'Proxima Nova', sans-serif;
}

.featured-job-card:hover .salary-badge {
    background: rgba(78, 204, 163, 0.15);
    border-color: rgba(78, 204, 163, 0.3);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.featured-job-content {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.job-title {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Graphik', sans-serif;
}

.job-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Proxima Nova', sans-serif;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Proxima Nova', sans-serif;
}

.tag i {
    color: #4ecca3;
}

.featured-job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.posted-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.btn-apply {
    background: linear-gradient(45deg, #4ecca3 0%, #1C82AD 100%);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Graphik', sans-serif;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 204, 163, 0.3);
}

@media (max-width: 1200px) {
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .featured-job-card {
        padding: 1.5rem;
    }
    
    .featured-job-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .salary-badge {
        align-self: flex-end;
        margin-top: 1rem;
    }
}

.search-results-container {
    margin-top: 2rem;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.search-results-container .swiper {
    padding: 1rem;
}

.search-results-container .swiper-slide {
    height: auto;
}

.no-results {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Proxima Nova', sans-serif;
}

.no-results i {
    font-size: 2rem;
    color: #4ecca3;
    margin-bottom: 1rem;
}

.no-results p {
    font-size: 1.1rem;
    margin: 0;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Graphik', sans-serif;
    background: linear-gradient(45deg, #ffffff, #4ecca3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Proxima Nova', sans-serif;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.search-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.search-inputs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-inputs input {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    background-color: #1a1a2e;
    border: 2px solid rgba(78, 204, 163, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-family: 'Proxima Nova', sans-serif;
    transition: all 0.3s ease;
    font-size: 1rem;
    backdrop-filter: blur(5px);
}

.search-inputs input:focus {
    outline: none;
    border-color: #4ecca3;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 15px rgba(78, 204, 163, 0.15);
}

.search-inputs input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-inputs button {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(45deg, #4ecca3, #1C82AD);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Graphik', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(78, 204, 163, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.search-inputs button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, #1C82AD, #4ecca3);
    z-index: -1;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(100%) scaleY(0.5);
    transform-origin: bottom;
    border-radius: 50% 50% 0 0;
}

.search-inputs button:hover::before {
    transform: translateY(0) scaleY(1);
    border-radius: 0;
}

.search-inputs button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 204, 163, 0.3);
    filter: brightness(1.1);
}

.search-inputs button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(78, 204, 163, 0.2);
}

@keyframes waveAnimation {
    0% {
        transform: translateY(100%) scaleY(0.5);
        border-radius: 50% 50% 0 0;
    }
    50% {
        transform: translateY(50%) scaleY(0.75);
        border-radius: 25% 25% 0 0;
    }
    100% {
        transform: translateY(0) scaleY(1);
        border-radius: 0;
    }
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .search-inputs {
        flex-direction: column;
    }
    
    .search-inputs input,
    .search-inputs button {
        width: 100%;
    }
}

/* Categories Section Styles */
.job-categories {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.job-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/pattern.svg') repeat;
    opacity: 0.05;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

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

.category-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.vector-art {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(78, 204, 163, 0.1), rgba(28, 130, 173, 0.1));
    border-radius: 20px;
    z-index: 1;
    transition: all 0.4s ease;
}

.category-card:hover .vector-art {
    transform: scale(1.1) rotate(5deg);
}

.category-card:hover .icon-bg {
    transform: translate(-50%, -50%) scale(1.2);
    background: linear-gradient(45deg, rgba(78, 204, 163, 0.2), rgba(28, 130, 173, 0.2));
}

.category-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-family: 'Graphik', sans-serif;
}

.category-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    font-family: 'Proxima Nova', sans-serif;
}

.category-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.trend-up {
    color: #4ecca3;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
}

.new-jobs {
    color: #1C82AD;
    font-weight: 500;
    font-size: 0.9rem;
}

.hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4ecca3, #1C82AD);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.category-card:hover .hover-effect {
    transform: scaleX(1);
}

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #4ECCA3, #1C82AD, #F7374F);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 80%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon img {
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 2;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(78, 204, 163, 0.1), rgba(28, 130, 173, 0.1));
    border-radius: 50%;
    z-index: 1;
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1C82AD;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.timeline-title {
    font-size: 24px;
    font-weight: 600;
    color: #1C82AD;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.timeline-description {
    color: #6c757d;
    margin-bottom: 20px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
}

.timeline-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #495057;
    font-size: 14px;
}

.feature i {
    color: #4ECCA3;
    margin-right: 10px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        justify-content: flex-start;
        padding-left: 60px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .step-number {
        right: auto;
        left: -15px;
    }
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/pattern.svg') repeat;
    opacity: 0.05;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
}

.stat-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 2rem;
    color: #4ECCA3;
    position: relative;
    z-index: 2;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(78, 204, 163, 0.1), rgba(28, 130, 173, 0.1));
    border-radius: 20px;
    z-index: 1;
    transition: all 0.4s ease;
}

.stat-card:hover .icon-bg {
    transform: translate(-50%, -50%) scale(1.2);
    background: linear-gradient(45deg, rgba(78, 204, 163, 0.2), rgba(28, 130, 173, 0.2));
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Graphik', sans-serif;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-family: 'Proxima Nova', sans-serif;
}

.stat-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #4ECCA3;
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-trend i {
    font-size: 0.8rem;
}

.stat-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.stat-circle circle {
    transition: stroke-dashoffset 1.5s ease;
}

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

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

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/pattern.svg') repeat;
    opacity: 0.05;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.quote-icon {
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: rgba(78, 204, 163, 0.1);
    z-index: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    margin: 0;
    position: relative;
    z-index: 2;
    font-family: 'Proxima Nova', sans-serif;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4ECCA3;
    padding: 2px;
    background: white;
    transition: transform 0.3s ease;
}

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

.author-info {
    flex: 1;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 0.25rem;
    font-family: 'Graphik', sans-serif;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 0.5rem;
    font-family: 'Proxima Nova', sans-serif;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

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

.testimonial-card:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.testimonial-card:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(78, 204, 163, 0.05), rgba(28, 130, 173, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .quote-icon {
        font-size: 3rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}

/* Call to Action Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.cta-section .container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
}

.cta-left {
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-left h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #4ECCA3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Graphik', sans-serif;
}

.cta-left p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-family: 'Proxima Nova', sans-serif;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #4ECCA3;
    margin-bottom: 0.5rem;
    font-family: 'Graphik', sans-serif;
}

.stat .label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Proxima Nova', sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}










@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(78, 204, 163, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(78, 204, 163, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(78, 204, 163, 0);
    }
}

.cta-right {
    position: relative;
    height: 600px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
    min-width: 200px;
}

.floating-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.floating-card i {
    font-size: 1.8rem;
    color: #4ECCA3;
}

.floating-card span {
    font-size: 1.1rem;
    font-weight: 500;
}

.card-1 {
    top: 5%;
    left: -5%;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 35%;
    right: -5%;
    animation: float 6s ease-in-out infinite 2s;
}

.card-3 {
    bottom: 5%;
    left: 15%;
    animation: float 6s ease-in-out infinite 4s;
}

.cta-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(78, 204, 163, 0.2), rgba(28, 130, 173, 0.2));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 1400px) {
    .cta-content {
        max-width: 1200px;
        gap: 4rem;
    }
    
    .cta-left h2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 1200px) {
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .cta-right {
        height: 500px;
        margin-top: 2rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-stats {
        max-width: 800px;
        margin: 0 auto 3rem;
    }
    
    .cta-left p {
        margin: 0 auto 2.5rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-left h2 {
        font-size: 2.5rem;
    }
    
    .cta-left p {
        font-size: 1.1rem;
    }

    .cta-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-right {
        height: 400px;
    }

    .floating-card {
        padding: 1.2rem;
        min-width: 180px;
    }
} 