/* Basic layout styles */
:root {
    --bg: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --brand: #0ea5e9;
    --brand-dark: #0284c7;
    --border: #e5e7eb;
}

* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
        "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    color: var(--text);
    background: var(--bg);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

.site-header {
    border-bottom: 1px solid var(--border);
    background: #fafafa;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
}
.brand {
    color: var(--brand-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
}
.brand:hover {
    color: var(--brand);
}
.site-nav a {
    color: var(--muted);
    text-decoration: none;
    margin-left: 16px;
}
.site-nav a:hover {
    color: var(--text);
}

.site-content {
    min-height: calc(100vh - 64px - 80px);
    padding: 24px 0;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: #fafafa;
}
.site-footer .container {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-footer p {
    margin: 0;
    color: var(--muted);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #1e5b8a;
    --primary-light: rgba(30, 91, 138, 0.1);
    --primary-hover: #164a70;
    --secondary: #2e99a3;
    --secondary-light: rgba(46, 153, 163, 0.1);
    --background: #f8fafc;
    --card: #ffffff;
    --foreground: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
    --radius: 0.75rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.font-serif {
    font-family: "Playfair Display", Georgia, serif;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.text-balance {
    text-wrap: balance;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    padding: 10px 0;
    background: #ffffff;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--foreground);
}

/* .logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
} */
.logo img {
    height: 65px;
    object-fit: cover;
}
.logo span {
    font-weight: 600;
    font-size: 1.125rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white !important;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30, 91, 138, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        rgba(30, 91, 138, 0.66),
        rgba(255, 255, 255, 0.66)
    );
    /* background: linear-gradient(
        135deg,
        rgba(30, 91, 138, 0.05) 0%,
        var(--background) 50%,
        rgba(46, 153, 163, 0.05) 100%
    ); */
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.hero-bg-circle.one {
    top: 5rem;
    left: 2rem;
    width: 18rem;
    height: 18rem;
    background: rgba(30, 91, 138, 0.1);
}

.hero-bg-circle.two {
    bottom: 5rem;
    right: 2rem;
    width: 24rem;
    height: 24rem;
    background: rgba(46, 153, 163, 0.1);
    animation-delay: 1s;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(30, 91, 138, 0.6),
        rgba(255, 255, 255, 0.6)
    );
    z-index: 2;
}

.hero-bg-circle {
    z-index: 3;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding-top: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}
.hero h1 .highlight {
    color: #003358; /* A sky blue color */
}

.hero-description {
    font-size: 1.125rem;
    color: #ffffff;
    max-width: 36rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    /* text-shadow: 0 1px 5px rgba(255, 255, 255, 0.2); */
    font-weight: 800;
}

.hero-tagline {
    font-size: 1rem;
    color: #145a91;
    font-weight: 800;
    margin-bottom: 2.5rem;
    font-style: italic;
    text-shadow: 0 1px 5px rgba(107, 107, 107, 0.2);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 91, 138, 0.2),
        rgba(46, 153, 163, 0.2)
    );
    border-radius: 50%;
    filter: blur(60px);
    transform: scale(1.1);
}

.hero-image img {
    position: relative;
    z-index: 10;
    max-width: 300px;
    border-radius: 1rem;
}

/* Stats */
.stats {
    margin-top: 5rem;
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 2rem 1rem;
    color: white;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted);
}

/* About Section */
.about {
    background: var(--card);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.section-description {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--primary);
}

.feature-item span {
    font-size: 0.875rem;
    font-weight: 500;
}

.promise-card {
    background: linear-gradient(
        135deg,
        var(--primary-light),
        var(--secondary-light)
    );
    border-radius: 1.5rem;
    padding: 2rem;
}

.promise-card-inner {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.promise-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.promise-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.promise-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.promise-number {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
}

.promise-list li span {
    color: var(--muted);
    font-size: 0.875rem;
}

/* Services Section */
.services {
    background: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid var(--primary-hover);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(30, 91, 138, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
    transition: color 0.3s;
}

.service-card:hover .service-icon svg {
    color: white;
}

.service-card.secondary .service-icon {
    background: var(--secondary-light);
}

.service-card.secondary .service-icon svg {
    color: var(--secondary);
}

.service-card.secondary:hover .service-icon {
    background: var(--secondary);
}

.service-card.secondary:hover .service-icon svg {
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-card li {
    color: var(--muted);
    font-size: 0.875rem;
    padding-left: 1rem;
    position: relative;
}

.service-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Industries */
.industries {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.industries h2 {
    font-size: 2.125rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.industries-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    justify-items: stretch;
    align-items: start;
    margin: 0 auto;
    max-width: 80rem;
}

.industry-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    text-align: left;
    transition: transform 0.18s ease, box-shadow 0.18s ease,
        border-color 0.18s ease;
    min-height: 96px;
}

.industry-card h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.industry-desc {
    margin: 0;
    font-size: 0.875rem;
    color: var(--muted, #6b7280);
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    border-color: rgba(30, 91, 138, 0.12);
}

/* Why Us Section */
.why-us {
    background: var(--card);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--background);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: rgba(30, 91, 138, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.3s;
}

.why-card:hover .why-card-icon {
    background: var(--primary);
}

.why-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
    transition: color 0.3s;
}

.why-card:hover .why-card-icon svg {
    color: white;
}

.why-card h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.875rem;
    color: var(--muted);
}

/* Process Section */
.process {
    background: var(--background);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-item {
    position: relative;
}

.process-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 1rem;
}

.process-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-item p {
    font-size: 0.875rem;
    color: var(--muted);
}

/* Careers Section */
.careers {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--secondary) 100%
    );
    color: white;
    text-align: center;
}

.careers h2 {
    margin-bottom: 1.5rem;
}

.careers p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 36rem;
    margin: 0 auto 2rem;
}

.btn-white {
    background: white;
    color: var(--foreground);
}

.btn-white:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact {
    background: var(--card);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.contact-item h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
    font-size: 0.875rem;
    color: var(--muted);
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--background);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border);
}

.contact-form-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: var(--card);
    font-family: inherit;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea {
    resize: none;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    margin-top: 0.5rem;
}

/* Footer */
footer {
    background: var(--foreground);
    color: white;
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.footer-brand-text span {
    font-weight: 700;
    font-size: 1.125rem;
    display: block;
}

.footer-brand-text p {
    font-size: 0.75rem;
    opacity: 0.7;
}

.footer-description {
    font-size: 0.875rem;
    opacity: 0.7;
    max-width: 24rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    opacity: 0.7;
    text-decoration: none;
    color: white;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .form-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex !important;
    }

    .mobile-menu-btn {
        display: none !important;
    }

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        text-align: left;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-image img {
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo span {
        display: none;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
    .detail-layout {
        grid-template-columns: 1fr;
    }
}
/* ========== JOB LISTINGS ========== */
.jobs-section {
    padding: 7rem 0 5rem;
    top: 120px;
}

.jobs-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.job-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: rgba(30, 91, 138, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.job-card-body {
    flex: 1;
    min-width: 0;
}

.job-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.job-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
}

.job-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.badge-open {
    background: var(--success-light);
    color: var(--success);
}

.badge-urgent {
    background: rgba(234, 88, 12, 0.1);
    color: #ea580c;
}

.badge-new {
    background: var(--primary-light);
    color: var(--primary);
}

.job-department {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.625rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.8125rem;
    color: var(--muted);
}

.job-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.job-meta-item svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.job-card-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
}

.job-date {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ========== EMPTY STATE ========== */
.empty-state {
    text-align: center;
    padding: 4rem 1.5rem;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.empty-state svg {
    width: 56px;
    height: 56px;
    color: var(--muted);
    opacity: 0.35;
    margin: 0 auto 1.25rem;
}

.empty-state h3 {
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.empty-state p {
    color: var(--muted);
    font-size: 0.875rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--secondary) 100%
    );
    color: #ffffff;
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.0625rem;
    opacity: 0.9;
    max-width: 540px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.cta-feature svg {
    width: 18px;
    height: 18px;
    opacity: 0.9;
}
/* ========== FILTER BAR ========== */
.filter-section {
    background: var(--card);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 118px;
    z-index: 30;
}

.filter-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-inner .search-wrapper {
    flex: 1;
    min-width: 240px;
    position: relative;
}

.filter-inner .search-wrapper svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--muted);
}

.filter-inner input[type="text"] {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border-radius: 9999px;
    border: 1px solid var(--border);
    background: var(--background);
    font-family: inherit;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.filter-inner input[type="text"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.filter-select {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--border);
    background: var(--background);
    font-family: inherit;
    font-size: 0.875rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2364748b' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    transition: all 0.2s;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.result-count {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-left: auto;
    white-space: nowrap;
}

/* ===== CLEAN LARAVEL PAGINATION RESET ===== */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination nav {
    display: block;
}

.pagination nav ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination nav ul li {
    margin: 0;
}

.pagination nav ul li a,
.pagination nav ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1;
}

.pagination nav ul li a:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.pagination nav ul li.active span,
.pagination nav ul li span[aria-current="page"] {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
}

.pagination nav ul li.disabled span {
    background: #f9fafb;
    color: #9ca3af;
    cursor: not-allowed;
}

/* ========== PAGINATION ========== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    list-style: none;
    padding: 0;
}

.pagination span,
.pagination a {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--muted);
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.2s ease-in-out;
    font-weight: 500;
    min-width: 40px;
    text-align: center;
}

.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.pagination .active span,
.pagination span[aria-current="page"] {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(30, 91, 138, 0.25);
}

.pagination .disabled span,
.pagination span[aria-disabled="true"] {
    background: var(--background);
    color: #cbd5e1;
    cursor: not-allowed;
}
/* Hide Previous / Next buttons */
.pagination nav ul li:first-child,
.pagination nav ul li:last-child {
    display: none;
}

/* Hide "Showing x to y of z results" */
.pagination nav > div:first-child {
    display: none;
}
/* ========== HERO BANNER ========== */
.detail-hero {
    position: relative;
    padding-top: 5.5rem;
    background: linear-gradient(
        135deg,
        var(--foreground) 0%,
        #1a2e44 50%,
        var(--primary) 100%
    );
    color: #ffffff;
    overflow: hidden;
}

.detail-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.detail-hero-particles::before,
.detail-hero-particles::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.detail-hero-particles::before {
    width: 350px;
    height: 350px;
    top: -80px;
    right: -60px;
    animation: pulse 8s ease-in-out infinite;
}

.detail-hero-particles::after {
    width: 200px;
    height: 200px;
    bottom: -40px;
    left: 5%;
    animation: pulse 6s ease-in-out infinite 2s;
}

.detail-hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem 0 3.5rem;
}
.detail-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.1s forwards;
}
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
    padding: 8rem 0 5rem;
    align-items: start;
}
/* ========== SIDEBAR ========== */
.sidebar {
    position: sticky;
    top: 5.5rem;
}

.sidebar-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    transition: box-shadow 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.sidebar-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--background);
}

.info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-row:first-of-type {
    padding-top: 0;
}

.info-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary-light);
}

.info-icon svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.info-icon.teal {
    background: var(--secondary-light);
}

.info-icon.teal svg {
    color: var(--secondary);
}

.info-text {
    flex: 1;
    min-width: 0;
}

.info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 0.125rem;
}

.info-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

/* Apply CTA Card */
.apply-card {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        #1a4d7a 50%,
        var(--secondary) 100%
    );
    color: #ffffff;
    border: none;
    position: relative;
    overflow: hidden;
}

.apply-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.apply-card h3 {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.apply-card p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.apply-card .btn-white {
    width: 100%;
    background: #ffffff;
    color: var(--primary);
    font-weight: 700;
}

.apply-card .btn-white:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.apply-or {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0.75rem 0;
}

.apply-card .btn-outline-light {
    width: 100%;
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    font-size: 0.8125rem;
}

.apply-card .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Share Card */
.share-row {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.share-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    color: var(--muted);
}

.share-btn:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

.share-btn svg {
    width: 16px;
    height: 16px;
}

.copy-btn {
    flex: 1;
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    background: var(--background);
    font-family: inherit;
    font-size: 0.8rem;
    color: var(--muted);
    cursor: pointer;
    text-align: left;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.copy-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .detail-layout {
        grid-template-columns: 1fr 300px;
        gap: 2rem;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .detail-hero h1 {
        font-size: 1.5rem;
    }

    .hero-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.625rem;
    }

    .related-card {
        padding: 1.25rem;
    }
}
.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}
.animate-delay-2 {
    animation-delay: 0.2s;
}
.animate-delay-3 {
    animation-delay: 0.3s;
}
.animate-delay-4 {
    animation-delay: 0.4s;
}

/* ========== JOB DETAIL SPECIFIC STYLES ========== */
.detail-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.detail-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}
.detail-hero .breadcrumb a:hover {
    text-decoration: underline;
}

.hero-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0.75rem 0 1rem;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.875rem;
}
.hero-tag svg {
    width: 16px;
    height: 16px;
}
.hero-tag.tag-new {
    background: var(--primary);
    color: #ffffff;
}

.hero-actions-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 9999px;
    background: #ffffff;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    border: none;
}
.btn-white:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.9rem;
    border-radius: 9999px;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.04);
}

.content-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.content-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.content-card-header svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}
.content-card-header h2 {
    font-size: 1.125rem;
    margin: 0;
}
.content-card p,
.content-card ul,
.content-card li {
    color: var(--muted);
    line-height: 1.7;
}
.content-card ul {
    margin: 0.5rem 0 0 1.25rem;
}

.detail-content {
    padding-right: 0.5rem;
}

.sidebar {
    position: sticky;
    top: 6rem;
}

@media (max-width: 768px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
        top: auto;
    }
    .hero-actions-row {
        justify-content: center;
    }
    .detail-hero {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }
}
/* ========== HERO BANNER ========== */
.detail-hero {
    position: relative;
    padding-top: 5.5rem;
    background: linear-gradient(
        135deg,
        var(--foreground) 0%,
        #1a2e44 50%,
        var(--primary) 100%
    );
    color: #ffffff;
    overflow: hidden;
}

.detail-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.detail-hero-particles::before,
.detail-hero-particles::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.detail-hero-particles::before {
    width: 350px;
    height: 350px;
    top: -80px;
    right: -60px;
    animation: pulse 8s ease-in-out infinite;
}

.detail-hero-particles::after {
    width: 200px;
    height: 200px;
    bottom: -40px;
    left: 5%;
    animation: pulse 6s ease-in-out infinite 2s;
}

.detail-hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem 0 3.5rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb svg {
    opacity: 0.5;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.9);
}

.detail-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.1s forwards;
}

.hero-tags {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-tag svg {
    width: 14px;
    height: 14px;
    opacity: 0.8;
}

.hero-tag.tag-new {
    background: rgba(22, 163, 74, 0.2);
    border-color: rgba(22, 163, 74, 0.3);
}

.hero-actions-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.3s forwards;
}

.hero-actions-row .btn-white {
    background: #ffffff;
    color: var(--primary);
    font-weight: 700;
}

.hero-actions-row .btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.hero-actions-row .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ========== CONTENT SECTIONS ========== */
.jobdetails-content-card {
    padding: 1.5rem;
}

.jobdetails-content-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 0 0 4px 0;
    transition: height 0.5s ease;
}

.jobdetails-content-card:hover::before {
    height: 100%;
}

.jobdetails-content-card:hover {
    box-shadow: 0 8px 30px rgba(30, 91, 138, 0.08);
    border-color: rgba(30, 91, 138, 0.2);
    transform: translateY(-2px);
}

.jobdetails-content-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--background);
}

.jobdetails-content-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary-light);
    transition: all 0.3s ease;
}

.jobdetails-content-card:hover .jobdetails-content-card-icon {
    background: var(--primary);
}

.jobdetails-content-card-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.jobdetails-content-card:hover .jobdetails-content-card-icon svg {
    color: #ffffff;
}

.jobdetails-content-card-header > svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.jobdetails-content-card-header h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
}

.jobdetails-content-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: #334155;
    margin-bottom: 1rem;
}

.jobdetails-content-card p:last-child {
    margin-bottom: 0;
}

.jobdetails-content-card p strong {
    color: var(--primary);
    font-weight: 600;
}

.jobdetails-content-card ul,
.jobdetails-content-card ol {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.jobdetails-content-card li {
    position: relative;
    padding: 0.625rem 0 0.625rem 2rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #334155;
    border-bottom: 1px solid var(--background);
    transition: all 0.25s ease;
}

.jobdetails-content-card li:last-child {
    border-bottom: none;
}

.jobdetails-content-card li:hover {
    background: var(--background);
    border-radius: 0.375rem;
    padding-left: 2.25rem;
}

.jobdetails-content-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: transform 0.25s ease;
}

.jobdetails-content-card li:hover::before {
    transform: scale(1.3);
}

.jobdetails-content-card li::after {
    content: "";
    position: absolute;
    left: 2px;
    top: calc(0.95rem + 2px);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ffffff;
}

/* ========== SIDEBAR ========== */
.sidebar {
    position: sticky;
    top: 5.5rem;
}

.sidebar-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    transition: all 0.35s ease;
}

.sidebar-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.sidebar-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--background);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-card h3::before {
    content: "";
    width: 3px;
    height: 1rem;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 2px;
    flex-shrink: 0;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--background);
    transition: all 0.2s ease;
}

.info-row:hover {
    padding-left: 0.375rem;
}

.info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-row:first-of-type {
    padding-top: 0;
}

.info-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary-light);
    transition: all 0.3s ease;
}

.info-row:hover .info-icon {
    transform: scale(1.08);
}

.info-icon svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.info-icon.teal {
    background: var(--secondary-light);
}

.info-icon.teal svg {
    color: var(--secondary);
}

.info-text {
    flex: 1;
    min-width: 0;
}

.info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 0.125rem;
}

.info-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}
.apply-card {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        #1a4d7a 50%,
        var(--secondary) 100%
    );
    color: #ffffff;
    border: none;
    position: relative;
    overflow: hidden;
}

.apply-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.apply-card::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.apply-card h3 {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.apply-card h3::before {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.4)
    );
}

.apply-card p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.apply-card .btn-white {
    width: 100%;
    background: #ffffff;
    color: var(--primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.apply-card .btn-white::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(30, 91, 138, 0.08),
        transparent
    );
    animation: shimmer 3s infinite;
}

.apply-card .btn-white:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.apply-or {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0.75rem 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.apply-or::before,
.apply-or::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.apply-card .btn-outline-light {
    width: 100%;
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    font-size: 0.8125rem;
    position: relative;
    z-index: 1;
}

.apply-card .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}
/* ========== MEET OUR TEAM ========== */
.team-section {
    background: var(--background);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    justify-items: center;
}

.team-card {
    background: var(--card);
    border-radius: 1.25rem;
    border: 1px solid var(--border);
    overflow: hidden;
    width: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(30, 91, 138, 0.12);
    border-color: rgba(30, 91, 138, 0.25);
}

.team-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-img {
    transform: scale(1.06);
}

.team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(30, 91, 138, 0.75) 0%,
        transparent 50%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.25rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.team-card:hover .team-card-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 0.625rem;
}

.team-social-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
    transform: translateY(10px);
    opacity: 0;
}

.team-card:hover .team-social-btn {
    transform: translateY(0);
    opacity: 1;
}

.team-card:hover .team-social-btn:nth-child(1) {
    transition-delay: 0.05s;
}

.team-card:hover .team-social-btn:nth-child(2) {
    transition-delay: 0.1s;
}

.team-social-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px) !important;
}

.team-social-btn svg {
    width: 14px;
    height: 14px;
}

.team-card-body {
    padding: 1.5rem;
}

.team-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.2rem;
}

.team-role {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.team-tag {
    display: inline-flex;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-card {
        max-width: 100%;
    }
}