/* Placement Services Page Styles */
.placement-hero {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    padding: 120px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.placement-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/placement-pattern.png') repeat;
    opacity: 0.1;
}

.placement-hero .container {
    position: relative;
    z-index: 1;
}

.placement-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.placement-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.services-overview p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #ff4757;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.benefit-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    padding: 100px 0;
    background: white;
    position: relative;
}

.services-grid .section-subtitle {
    color: #ff4757;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.services-grid h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,71,87,0.9), rgba(255,107,129,0.9));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    color: white;
    font-size: 3rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: translateY(0);
    opacity: 1;
}

.service-content {
    padding: 35px;
}

.service-header {
    margin-bottom: 20px;
}

.service-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255,71,87,0.1);
    color: #ff4757;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-content h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.service-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
    font-size: 1.05rem;
}

.service-features li i {
    color: #ff4757;
    margin-right: 12px;
    font-size: 1.2rem;
}

.service-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: #ff4757;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 10px;
}

.service-button:hover {
    background: #ff6b81;
    transform: translateX(5px);
}

.service-button i {
    transition: transform 0.3s ease;
}

.service-button:hover i {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.section-subtitle {
    color: #ff4757;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.quote-icon {
    color: #ff4757;
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-content {
    font-style: italic;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff4757;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 600;
}

.author-info p {
    margin: 5px 0 0;
    color: #666;
    font-size: 0.95rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff4757;
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #ff4757;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .placement-hero {
        padding: 80px 0;
    }

    .placement-hero h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        padding: 60px 0;
    }

    .services-grid h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 25px;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .testimonials-section h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }
} 