/* Careers Page Specific Styles */

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 90px; /* Adjust for fixed header */
}

.hero-info {
    width: 90%;
    max-width: 900px;
}

.hero-info .gradient {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin: 0 auto 20px auto;
}

.hero-info p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

.cta-button {
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    border: 1px solid #72a1de81;
    background-color: #2200493d;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #72a1de;
    color: black;
    box-shadow: none;
    text-shadow: none;
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: space-around;
    width: 80%;
    margin: 50px auto;
    text-align: center;
    border-radius: 15px;
    padding: 30px 0;
}

.stat {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 260px;
    height: 260px;
}

.progress-bg, .progress-fg {
    stroke-linecap: round;
}

.progress-fg {
    transition: stroke-dashoffset 1.5s ease-out;
}

.counter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.counter h2 {
    font-size: 2em;
    color: #72a1de;
    margin: 0;
    font-weight: bold;
}

.stat p {
    font-size: 1em;
    color: lightgray;
    line-height: 1.5;
    padding: 0 10px;
    margin-top: 20px;
}

/* Strategic Edge Section */
.strategic-edge {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.strategic-edge-content {
    flex: 1.5;
    text-align: left;
}

.strategic-edge-content p {
    max-width: 650px;
    font-size: 1.1rem;
    color: whitesmoke;
    line-height: 1.7;
    margin-bottom: 30px;
}

.strategic-edge-video {
    flex: 1;
    max-width: 450px;
}

.strategic-edge-video img {
    width: 100%;
    border-radius: 10px;
}

/* Engineering Solutions (Values and Benefits) Section */
.engineering-solutions {
    width: 95%;
    max-width: 1500px;
    text-align: center;
    margin: 0 auto 80px auto;
}

.engineering-solutions > p {
    max-width: 800px;
    margin: -20px auto 40px auto;
    color: #c5c5c5;
    line-height: 1.7;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.solution-card {
    background-color: rgba(10, 25, 47, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(114, 161, 222, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(114, 161, 222, 0.3);
    border-color: rgba(114, 161, 222, 0.4);
}

.solution-card i {
    font-size: 40px;
    color: #72a1de;
    margin-bottom: 20px;
    align-self: flex-start;
}

.solution-card h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.solution-card p {
    color: #c5c5c5;
    line-height: 1.6;
    font-size: 0.9rem;
    flex-grow: 1;
    margin-bottom: 20px;
}

.solution-card .learn-more-link {
    color: #72a1de;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.solution-card .learn-more-link:hover {
    color: #fff;
    gap: 10px;
}

/* Workflow Section (Recruitment Process) */
.workflow-section {
    padding: 80px 20px;
    text-align: center;
}

.workflow-section .section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

/* Responsive styles */
@media screen and (max-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .strategic-edge {
        flex-direction: column;
        text-align: center;
    }
    .strategic-edge-content {
        text-align: center;
    }
    .strategic-edge-content p {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .stats-section {
        flex-direction: column;
        gap: 30px;
    }
    .stat {
        width: 100%;
    }
    .hero {
        height: auto;
        padding: 120px 20px 60px 20px;
    }
    .hero-info .gradient {
        font-size: 2.5rem;
    }
    .hero-info p {
        font-size: 1rem;
    }
    .engineering-solutions > p {
        font-size: 1rem;
    }
    .workflow-section .section-title {
        font-size: 2rem;
    }
}