body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f7fa;
    color: #222;
}

header {
    background: #0d47a1;
    padding: 15px 0;
    color: white;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

.logo {
    height: 60px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.hero {
    background: black;
    padding: 120px 20px;
    text-align: center;
    color: #00aaff;
    text-shadow: 0 0 10px #00aaff;
}

.hero h1 {
    font-size: 52px;
    margin: 0;
}

.btn-primary {
    background: #00aaff;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    margin-top: 20px;
    display: inline-block;
}

.section {
    padding: 60px 10%;
    text-align: center;
}

.section.light {
    background: #eef2f7;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.services-grid, .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-card, .process-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.job-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.09);
    transition: 0.25s ease;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.job-card h3 {
    margin-bottom: 10px;
    color: #0d47a1;
}

.job-card .location,
.job-card .exp {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.job-card .summary {
    margin: 10px 0 18px;
    font-size: 15px;
}

.job-btn {
    display: inline-block;
    background: #0d47a1;
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
}

.job-btn:hover {
    background: #1565c0;
}


.social-links {
    margin-top: 20px;
}

.social-links i {
    font-size: 30px;
    margin: 0 10px;
    color: #0d47a1;
    transition: 0.3s;
}

.social-links i:hover {
    color: #00aaff;
}

footer {
    background: #0d47a1;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 14px;
}


/* Partner / Hiring Companies Section */
.partner-section {
    background: #eef2f7;
    padding: 70px 10%;
    text-align: center;
}

.partner-intro {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #333;
    line-height: 1.6;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.partner-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.09);
    text-align: left;
}

.partner-card h3 {
    margin-bottom: 15px;
    color: #0d47a1;
}

.partner-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.partner-card ul li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.partner-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #0d47a1;
    font-size: 14px;
}

.partner-card.highlight {
    border-left: 6px solid #0d47a1;
    background: #f0f6ff;
}

.highlight-text {
    margin: 15px 0;
    font-weight: bold;
}

.partner-btn {
    display: inline-block;
    margin-top: 15px;
    background: #0d47a1;
    color: white;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.2s ease;
    font-size: 15px;
}

.partner-btn:hover {
    background: #1565c0;
}

.partner-footer {
    margin-top: 40px;
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

