/* Placement Drives Page Styles */

/* Hero Section */
.placement-drives-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    position: relative;
}

.placement-drives-hero .hero-content {
    text-align: center;
}

.placement-drives-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.placement-drives-hero p {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Introduction Section */
.placement-drives-intro {
    padding: 80px 0;
    background: #fff;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    color: #2c2c54;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.intro-content p {
    color: #474787;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #ff4757;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.2);
    border-color: #ff4757;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #ff4757;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    color: #2c2c54;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #474787;
    line-height: 1.6;
}

/* Placement Process Section */
.placement-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.placement-process h2 {
    text-align: center;
    color: #2c2c54;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

.process-step h3 {
    color: #2c2c54;
    margin-bottom: 15px;
}

.process-step p {
    color: #474787;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #ff4757;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #ff4757;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background: #fff;
}

.cta-button i {
    margin-left: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .placement-drives-hero {
        padding: 60px 0;
    }
    
    .placement-drives-hero h1 {
        font-size: 2rem;
    }
    
    .placement-drives-intro {
        padding: 40px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
} 