/* Placements Page CSS - Complete Styling Solution */

/* ------------- Hero Section ------------- */

.placement-hero {
    position: relative;
    height: 80vh;
    min-height: 550px;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.9) 0%, rgba(10, 10, 20, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 20px;
    margin-top: 70px;
    z-index: 1;
}

.placement-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/patterns/circuit-pattern.svg');
    background-size: cover;
    opacity: 0.15;
    z-index: 1;
    animation: subtleFloat 30s infinite alternate ease-in-out;
}

@keyframes subtleFloat {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-20px) scale(1.05); }
}

.placement-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.animate-title {
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
    background: linear-gradient(135deg, #fff 0%, #5b5ef7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.animate-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.placement-stats {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: #00eaff;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.5);
}

.stat-label {
    font-size: clamp(0.8rem, 1vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeInUp 1s ease-out 1s forwards, bounce 2s infinite 2s;
    opacity: 0;
    z-index: 3;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    margin-bottom: 8px;
}

.scroll-text {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ------------- Section Headers ------------- */

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.main-section-title {
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    letter-spacing: -0.5px;
}

.section-title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #5b5ef7 0%, #00eaff 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* ------------- Brand Partners Section ------------- */

.brand-partners {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(15, 15, 25, 1) 0%, rgba(25, 25, 40, 0.95) 100%);
    position: relative;
    z-index: 2;
}

.recruiting-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}

.recruiting-carousel {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1000px;
}

.recruiting-slide {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.recruiting-slide:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(91, 94, 247, 0.3);
}

.recruiting-slide img {
    max-width: 100%;
    max-height: 70px;
    filter: grayscale(100%) brightness(1.8);
    transition: all 0.3s ease;
}

.recruiting-slide:hover img {
    filter: grayscale(0%) brightness(1);
}

.recruiting-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.recruiting-carousel-nav:hover {
    background: rgba(91, 94, 247, 0.2);
    border-color: rgba(91, 94, 247, 0.5);
}

.recruiting-carousel-nav.prev {
    left: 10px;
}

.recruiting-carousel-nav.next {
    right: 10px;
}

.arrow-left, .arrow-right {
    border-style: solid;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    position: relative;
}

.arrow-left {
    transform: rotate(135deg);
    margin-left: 5px;
    border-color: #ffffff;
}

.arrow-right {
    transform: rotate(-45deg);
    margin-right: 5px;
    border-color: #ffffff;
}

/* ------------- Featured Placements Section ------------- */

.featured-placements {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(25, 25, 40, 0.95) 0%, rgba(15, 15, 25, 1) 100%);
    position: relative;
    z-index: 3;
}

.placement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(91, 94, 247, 0.3);
}

.story-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.company-logo {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px;
    border-radius: 8px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: brightness(1.5);
}

.story-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.story-content h3 {
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.story-content .role {
    font-size: 1rem;
    color: #00eaff;
    margin-bottom: 10px;
    font-weight: 500;
}

.story-content .package {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.story-content .batch {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-container {
    margin-bottom: 20px;
    flex-grow: 1;
}

.quote {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid rgba(91, 94, 247, 0.5);
}

.read-more-btn {
    align-self: flex-start;
    padding: 8px 20px;
    background: rgba(91, 94, 247, 0.2);
    color: #ffffff;
    border: 1px solid rgba(91, 94, 247, 0.4);
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
}

.read-more-btn:hover {
    background: rgba(91, 94, 247, 0.4);
    transform: translateY(-2px);
}





/* ------------- Enquiry Section ------------- */

.placement-enquiry {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(15, 15, 25, 1) 0%, rgba(25, 25, 40, 0.95) 100%);
    position: relative;
    z-index: 4;
}

.enquiry-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.enquiry-content {
    color: #ffffff;
}

.enquiry-title {
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.enquiry-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.enquiry-features {
    margin-bottom: 30px;
}

.enquiry-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    margin-right: 15px;
    width: 24px;
    height: 24px;
    background-color: rgba(91, 94, 247, 0.2);
    color: #5b5ef7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.feature-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.enquiry-cta {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #5b5ef7 0%, #00eaff 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.enquiry-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(91, 94, 247, 0.3);
}

.enquiry-form {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ------------- Responsive Styles ------------- */

@media (max-width: 1024px) {
    .placement-hero {
        height: 70vh;
    }
    
    .video-card {
        height: 200px;
    }
    
    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .placement-hero {
        height: 60vh;
    }
    
    .placement-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .placement-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .video-card {
        height: 180px;
    }
    
    .enquiry-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .placement-hero {
        height: auto;
        padding: 100px 20px;
    }
    
    .animate-title {
        font-size: 2.5rem;
    }
      .placement-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .placement-grid {
        grid-template-columns: 1fr;
    }
  
    
    .enquiry-container {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        height: 200px;
    }
}

/* Footer Section Styles */
.site-footer {
    background: #181a20;
    color: #eafcff;
    padding: 28px 0 0 0;
    font-family: var(--font-body, 'Inter', sans-serif);
    border-top: 2px solid #00eaff22;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding: 0 16px;
}

.footer-brand {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-logo {
    width: 80px;
    height: auto;
    margin-bottom: 4px;
}

.footer-tagline {
    color: #00eaff;
    font-size: 0.98rem;
    font-weight: 600;
    margin: 0;
}

.footer-nav {
    flex: 2 1 220px;
    margin: 0 16px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.footer-nav a {
    color: #eafcff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.98rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #00eaff;
}

.footer-contact {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.98rem;
}

.footer-contact a {
    color: #00eaff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    text-decoration: underline;
    color: #00ff88;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.social-icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
    color: #eafcff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-icon:hover {
    color: #00eaff;
}

.footer-bottom {
    text-align: center;
    padding: 14px 0 8px 0;
    color: #b2eaff;
    font-size: 0.92rem;
    background: #16171c;
    margin-top: 16px;
}

.footer-map {
    width: 100%;
    max-width: 300px;
    margin: 12px 0 0 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.footer-map iframe {
    width: 100%;
    height: 120px;
    border: 0;
    display: block;
}

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 0 4vw;
    }
    
    .footer-nav {
        margin: 0 0 8px 0;
    }
    
    .footer-map {
        max-width: 100%;
        margin: 10px 0 0 0;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 16px 0 0 0;
    }
    
    .footer-container {
        gap: 8px;
        padding: 0 1vw;
    }
    
    .footer-logo {
        width: 70px;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-map iframe {
        height: 150px;
    }
}
