/* ================= GLOBAL CSS ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2937;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 90px 0;
}


/* ================= HEADER / NAVBAR ================= */

.header {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.navbar {
    width: 90%;
    max-width: 1300px;
    height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    transition: 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link::after {
    content: "";
    width: 0;
    height: 3px;
    background-color: #2563eb;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.3s ease;
    border-radius: 50px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.career-link {
    color: #dc2626;
    font-weight: 800;
}

.career-link:hover {
    color: #b91c1c;
}

.menu-btn {
    display: none;
    border: none;
    outline: none;
    background: none;
    font-size: 32px;
    cursor: pointer;
    color: #0f172a;
}


/* ================= BUTTONS ================= */

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s ease;
    cursor: pointer;
}

.primary-btn {
    background-color: #2563eb;
    color: #ffffff;
    border: 2px solid #2563eb;
}

.primary-btn:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-3px);
}

.secondary-btn {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.secondary-btn:hover {
    background-color: #eff6ff;
    transform: translateY(-3px);
}


/* ================= HERO SECTION ================= */

.hero-section {
    min-height: 100vh;
    padding-top: 160px;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 45%, #f1f5f9 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.hero-tagline {
    display: inline-block;
    color: #2563eb;
    background-color: #dbeafe;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 22px;
}

.hero-title {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 20px;
    color: #4b5563;
    max-width: 620px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-image-box {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.18);
    position: relative;
}

.hero-image-box::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #2563eb;
    opacity: 0.12;
    border-radius: 50%;
    top: -35px;
    right: -35px;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
}


/* ================= STATS SECTION ================= */

.stats-section {
    background-color: #0f172a;
    padding: 60px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-box {
    padding: 28px 18px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-box h2 {
    font-size: 44px;
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 8px;
}

.stat-box p {
    color: #cbd5e1;
    font-size: 17px;
    font-weight: 600;
}


/* ================= SECTION HEADING ================= */

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}

.section-subtitle {
    color: #2563eb;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    line-height: 1.2;
    color: #0f172a;
    font-weight: 900;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: #6b7280;
}


/* ================= SERVICES SECTION ================= */

.services-section {
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(37, 99, 235, 0.14);
}

.service-image-box {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.08);
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 24px;
    color: #0f172a;
    margin-bottom: 14px;
    font-weight: 800;
}

.service-content p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 18px;
}

.read-more {
    color: #2563eb;
    font-weight: 800;
    transition: 0.3s ease;
}

.read-more:hover {
    color: #1d4ed8;
}


/* ================= ABOUT PREVIEW SECTION ================= */

.about-preview-section {
    background-color: #f8fafc;
}

.about-preview-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.about-image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.about-text {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 26px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 32px;
}

.point {
    background-color: #ffffff;
    padding: 14px 16px;
    border-radius: 10px;
    color: #1f2937;
    font-weight: 700;
    border-left: 4px solid #2563eb;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}


/* ================= WHY CHOOSE US SECTION ================= */

.why-section {
    background-color: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    padding: 32px 24px;
    background-color: #f8fafc;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    transition: 0.3s ease;
}

.why-card:hover {
    background-color: #eff6ff;
    transform: translateY(-8px);
    border-color: #bfdbfe;
}

.why-card h3 {
    font-size: 21px;
    color: #0f172a;
    margin-bottom: 14px;
    font-weight: 800;
}

.why-card p {
    color: #6b7280;
    font-size: 16px;
}


/* ================= PROCESS SECTION ================= */

.process-section {
    background-color: #f8fafc;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.process-box {
    background-color: #ffffff;
    padding: 34px 24px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: 0.3s ease;
}

.process-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.13);
}

.process-number {
    display: inline-block;
    font-size: 28px;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 18px;
}

.process-box h3 {
    font-size: 21px;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 800;
}

.process-box p {
    color: #6b7280;
    font-size: 16px;
}


/* ================= CAREER PREVIEW SECTION ================= */

.career-preview-section {
    background-color: #ffffff;
}

.career-preview-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.career-text {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 30px;
}

.career-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}


/* ================= CTA SECTION ================= */

.cta-section {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.cta-container {
    max-width: 850px;
}

.cta-section h2 {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 18px;
}

.cta-section p {
    font-size: 19px;
    color: #dbeafe;
    margin-bottom: 32px;
}

.cta-btn {
    background-color: #ffffff;
    color: #1e3a8a;
    border: 2px solid #ffffff;
}

.cta-btn:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-3px);
}


/* ================= FOOTER ================= */

.footer {
    background-color: #020617;
    color: #ffffff;
    padding-top: 70px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr : translateY(-3px);
1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 4px;
}

.footer-logo-box span {
    font-size: 20px;
    font-weight: 800;
}

.footer-about p {
    color: #94a3b8;
    font-size: 16px;
    max-width: 330px;
}

.footer h3 {
    font-size: 20px;
    margin-bottom: 18px;
    color: #ffffff;
}

.footer ul li {
    color: #94a3b8;
    margin-bottom: 10px;
    font-size: 16px;
}

.footer ul li a {
    transition: 0.3s ease;
}

.footer ul li a:hover {
    color: #60a5fa;
}

.footer-contact p {
    color: #94a3b8;
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 22px 0;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 15px;
}


/* ================= RESPONSIVE DESIGN ================= */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .services-grid,
    .why-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .navbar {
        height: 76px;
    }

    .logo-img {
        width: 48px;
        height: 48px;
    }

    .logo-text {
        font-size: 18px;
    }

    .menu-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 14px 0;
    }

    .nav-link::after {
        display: none;
    }

    .hero-section {
        padding-top: 130px;
    }

    .hero-container,
    .about-preview-container,
    .career-preview-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-image {
        height: 320px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 34px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .career-image,
    .about-image {
        height: 330px;
    }

    .cta-section h2 {
        font-size: 34px;
    }
}


@media (max-width: 520px) {
    .container,
    .navbar {
        width: 92%;
    }

    .logo-text {
        font-size: 16px;
    }

    .logo-img {
        width: 44px;
        height: 44px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-tagline {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .stats-container,
    .services-grid,
    .why-grid,
    .process-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .stat-box h2 {
        font-size: 38px;
    }

    .section-title {
        font-size: 30px;
    }

    .hero-image,
    .career-image,
    .about-image {
        height: 260px;
    }

    .footer {
        text-align: center;
    }

    .footer-logo-box {
        justify-content: center;
    }

    .footer-about p {
        margin: 0 auto;
    }
}

/* =====================================================
   ABOUT PAGE CSS
===================================================== */


/* ================= PAGE HERO ================= */

.page-hero {
    padding-top: 170px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #0f172a, #1e3a8a, #2563eb);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    bottom: -100px;
    left: -80px;
}

.page-hero-container {
    position: relative;
    z-index: 2;
    max-width: 950px;
}

.page-hero .hero-tagline {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    margin-bottom: 22px;
}

.page-hero-title {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 24px;
}

.page-hero-description {
    font-size: 20px;
    color: #dbeafe;
    max-width: 800px;
    margin: 0 auto;
}


/* ================= ABOUT INTRO ================= */

.about-intro-section {
    background-color: #ffffff;
}

.about-intro-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.about-intro-image-box {
    position: relative;
}

.about-intro-image-box::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background-color: #2563eb;
    opacity: 0.12;
    border-radius: 50%;
    top: -35px;
    right: -35px;
    z-index: 0;
}

.about-intro-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.14);
    position: relative;
    z-index: 1;
}


/* ================= COMPANY STORY ================= */

.company-story-section {
    background-color: #f8fafc;
}

.company-story-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 60px;
}

.story-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}


/* ================= MISSION VISION VALUES ================= */

.mission-section {
    background-color: #ffffff;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 34px 28px;
    transition: 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    background-color: #eff6ff;
    border-color: #bfdbfe;
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

.mission-icon {
    display: inline-block;
    font-size: 44px;
    margin-bottom: 18px;
}

.mission-card h3 {
    font-size: 24px;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 14px;
}

.mission-card p {
    color: #6b7280;
    font-size: 16px;
}


/* ================= DIFFERENCE SECTION ================= */

.difference-section {
    background-color: #f8fafc;
}

.difference-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.difference-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}

.difference-point {
    background-color: #ffffff;
    padding: 22px;
    border-radius: 16px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.difference-point h3 {
    color: #0f172a;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.difference-point p {
    color: #6b7280;
    font-size: 15px;
}

.difference-image {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.13);
}


/* ================= EXPERTISE SECTION ================= */

.expertise-section {
    background-color: #ffffff;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.expertise-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(37, 99, 235, 0.14);
}

.expertise-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.expertise-content {
    padding: 28px;
}

.expertise-content h3 {
    font-size: 24px;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 14px;
}

.expertise-content p {
    color: #6b7280;
    font-size: 16px;
}


/* ================= INFRASTRUCTURE SECTION ================= */

.infrastructure-section {
    background-color: #f8fafc;
}

.infrastructure-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 60px;
}

.infrastructure-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.13);
}

.infrastructure-list {
    margin-top: 26px;
}

.infrastructure-list li {
    background-color: #ffffff;
    margin-bottom: 14px;
    padding: 15px 18px;
    border-radius: 10px;
    color: #1f2937;
    font-weight: 700;
    border-left: 4px solid #2563eb;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}


/* ================= CULTURE SECTION ================= */

.culture-section {
    background-color: #ffffff;
}

.culture-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.culture-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.13);
}


/* ================= ABOUT PROCESS ================= */

.about-process-section {
    background-color: #f8fafc;
}


/* ================= QUALITY SECTION ================= */

.quality-section {
    background-color: #ffffff;
}

.quality-container {
    max-width: 1000px;
}

.quality-content {
    text-align: center;
}

.quality-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 34px;
    text-align: left;
}

.quality-item {
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 14px;
    color: #4b5563;
    font-size: 16px;
}

.quality-item strong {
    color: #0f172a;
}


/* ================= ABOUT PAGE RESPONSIVE ================= */

@media (max-width: 1024px) {
    .page-hero-title {
        font-size: 46px;
    }

    .about-intro-container,
    .company-story-container,
    .difference-container,
    .infrastructure-container,
    .culture-container {
        grid-template-columns: 1fr;
    }

    .mission-grid,
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .difference-image,
    .about-intro-image,
    .story-image,
    .infrastructure-image,
    .culture-image {
        height: 420px;
    }
}


@media (max-width: 768px) {
    .page-hero {
        padding-top: 140px;
        padding-bottom: 75px;
    }

    .page-hero-title {
        font-size: 38px;
    }

    .page-hero-description {
        font-size: 18px;
    }

    .mission-grid,
    .expertise-grid,
    .difference-points,
    .quality-list {
        grid-template-columns: 1fr;
    }

    .difference-image,
    .about-intro-image,
    .story-image,
    .infrastructure-image,
    .culture-image {
        height: 340px;
    }
}


@media (max-width: 520px) {
    .page-hero-title {
        font-size: 31px;
    }

    .page-hero-description {
        font-size: 16px;
    }

    .difference-image,
    .about-intro-image,
    .story-image,
    .infrastructure-image,
    .culture-image {
        height: 260px;
    }

    .mission-card,
    .expertise-content,
    .difference-point {
        padding: 22px;
    }
}

/* =====================================================
   CAREERS PAGE CSS - UPDATED PROFESSIONAL VERSION
===================================================== */


/* ================= CAREERS HERO ================= */

.careers-hero {
    background: linear-gradient(135deg, #020617, #0f172a, #1e3a8a, #2563eb);
}

.career-hero-buttons {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.secondary-light-btn {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.secondary-light-btn:hover {
    background-color: #ffffff;
    color: #1e3a8a;
    transform: translateY(-3px);
}


/* ================= CAREERS INTRO ================= */

.careers-intro-section {
    background-color: #ffffff;
}

.careers-intro-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.careers-intro-image-box {
    position: relative;
}

.careers-intro-image-box::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background-color: #2563eb;
    opacity: 0.12;
    border-radius: 50%;
    top: -35px;
    right: -35px;
    z-index: 0;
}

.careers-intro-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.13);
    position: relative;
    z-index: 1;
}

.career-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 32px;
}

.career-highlight-box {
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #2563eb;
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    transition: 0.3s ease;
}

.career-highlight-box:hover {
    transform: translateY(-6px);
    background-color: #eff6ff;
    border-color: #bfdbfe;
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.12);
}

.career-highlight-box h3 {
    font-size: 34px;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 6px;
}

.career-highlight-box p {
    color: #4b5563;
    font-size: 15px;
    font-weight: 700;
}


/* ================= OPEN ROLES SECTION ================= */

.career-openings-section {
    background-color: #f8fafc;
}


/* ================= CAREER FILTER TABS ================= */

.career-filter-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 0 auto 45px;
    max-width: 1100px;
}

.career-filter-btn {
    border: 1px solid #dbeafe;
    background-color: #ffffff;
    color: #1e3a8a;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.career-filter-btn:hover,
.career-filter-btn.active {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}


/* ================= JOBS GRID ================= */

.jobs-grid,
.enhanced-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.job-card,
.enhanced-job-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enhanced-job-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: #2563eb;
    opacity: 0.07;
    border-radius: 50%;
    top: -45px;
    right: -45px;
}

.job-card:hover,
.enhanced-job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(37, 99, 235, 0.14);
    border-color: #bfdbfe;
}

.job-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.job-badge {
    display: inline-block;
    padding: 7px 13px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
}

.blue-badge {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.red-badge {
    background-color: #fee2e2;
    color: #b91c1c;
}

.green-badge {
    background-color: #dcfce7;
    color: #15803d;
}

.purple-badge {
    background-color: #f3e8ff;
    color: #7e22ce;
}

.yellow-badge {
    background-color: #fef3c7;
    color: #b45309;
}

.gray-badge {
    background-color: #e5e7eb;
    color: #374151;
}

.job-type {
    font-size: 13px;
    font-weight: 800;
    color: #64748b;
    background-color: #f8fafc;
    padding: 7px 12px;
    border-radius: 50px;
}

.job-card h3,
.enhanced-job-card h3 {
    font-size: 24px;
    color: #0f172a;
    font-weight: 900;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.job-card p,
.enhanced-job-card p {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}


/* ================= JOB META ================= */

.job-meta {
    display: grid;
    gap: 9px;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.job-meta span {
    display: block;
    background-color: #f8fafc;
    color: #374151;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 13px;
    border-radius: 10px;
    border-left: 3px solid #2563eb;
}


/* ================= JOB SKILLS ================= */

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.job-skills span {
    background-color: #eff6ff;
    color: #1d4ed8;
    padding: 7px 11px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
}

.job-apply-btn {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}


/* ================= CAREER CULTURE ================= */

.career-culture-section {
    background-color: #ffffff;
}

.career-culture-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 60px;
}

.career-culture-image {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.13);
}

.culture-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.culture-point {
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #2563eb;
    border-radius: 14px;
    padding: 22px;
    transition: 0.3s ease;
}

.culture-point:hover {
    transform: translateY(-6px);
    background-color: #eff6ff;
    border-color: #bfdbfe;
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.12);
}

.culture-point h3 {
    font-size: 18px;
    color: #0f172a;
    font-weight: 900;
    margin-bottom: 10px;
}

.culture-point p {
    color: #6b7280;
    font-size: 15px;
}


/* ================= BENEFITS ================= */

.career-benefits-section {
    background-color: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 30px 24px;
    transition: 0.3s ease;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-8px);
    background-color: #eff6ff;
    border-color: #bfdbfe;
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

.benefit-card h3 {
    font-size: 21px;
    color: #0f172a;
    font-weight: 900;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #6b7280;
    font-size: 16px;
}


/* ================= HIRING PROCESS ================= */

.career-process-section {
    background-color: #ffffff;
}

.career-process-grid {
    grid-template-columns: repeat(3, 1fr);
}


/* ================= FAQ ================= */

.career-faq-section {
    background-color: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px;
    transition: 0.3s ease;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.faq-card:hover {
    transform: translateY(-6px);
    border-color: #bfdbfe;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.12);
}

.faq-card h3 {
    font-size: 21px;
    color: #0f172a;
    font-weight: 900;
    margin-bottom: 12px;
}

.faq-card p {
    color: #6b7280;
    font-size: 16px;
}


/* ================= FILTER HIDE CLASS ================= */

.enhanced-job-card.hide-job {
    display: none;
}


/* ================= CAREERS RESPONSIVE ================= */

@media (max-width: 1100px) {
    .jobs-grid,
    .enhanced-jobs-grid,
    .benefits-grid,
    .career-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 1024px) {
    .careers-intro-container,
    .career-culture-container {
        grid-template-columns: 1fr;
    }

    .careers-intro-image,
    .career-culture-image {
        height: 420px;
    }
}


@media (max-width: 768px) {
    .career-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .career-hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .career-filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .career-filter-btn {
        white-space: nowrap;
        font-size: 14px;
        padding: 11px 16px;
    }

    .career-highlight-grid,
    .jobs-grid,
    .enhanced-jobs-grid,
    .culture-points,
    .benefits-grid,
    .career-process-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .careers-intro-image,
    .career-culture-image {
        height: 340px;
    }

    .job-card,
    .enhanced-job-card,
    .benefit-card,
    .faq-card {
        padding: 24px;
    }
}


@media (max-width: 520px) {
    .careers-intro-image,
    .career-culture-image {
        height: 260px;
    }

    .job-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .career-highlight-box h3 {
        font-size: 30px;
    }

    .job-card h3,
    .enhanced-job-card h3 {
        font-size: 21px;
    }

    .job-meta span {
        font-size: 13px;
    }

    .career-filter-tabs {
        margin-bottom: 32px;
    }
}

/* =====================================================
   SERVICES PAGE CSS
===================================================== */


/* ================= SERVICES OVERVIEW ================= */

.services-overview-section {
    background-color: #ffffff;
}

.services-overview-section .services-grid {
    margin-top: 40px;
}


/* ================= SERVICE DETAIL SECTIONS ================= */

.service-detail-section {
    background-color: #ffffff;
}

.service-detail-alt {
    background-color: #f8fafc;
}

.service-detail-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.reverse-layout {
    grid-template-columns: 1.1fr 0.9fr;
}

.reverse-layout .service-detail-content {
    order: 2;
}

.reverse-layout .service-detail-image-box {
    order: 1;
}

.service-detail-content .section-title {
    margin-bottom: 22px;
}

.service-detail-image-box {
    position: relative;
}

.service-detail-image-box::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background-color: #2563eb;
    opacity: 0.12;
    border-radius: 50%;
    top: -35px;
    right: -35px;
    z-index: 0;
}

.service-detail-image {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.13);
    position: relative;
    z-index: 1;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 30px 0;
}

.service-feature-box {
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #2563eb;
    border-radius: 14px;
    padding: 22px;
    transition: 0.3s ease;
}

.service-detail-alt .service-feature-box {
    background-color: #ffffff;
}

.service-feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.12);
    border-color: #bfdbfe;
}

.service-feature-box h3 {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.service-feature-box p {
    color: #6b7280;
    font-size: 15px;
}

.service-list {
    margin-top: 26px;
}

.service-list li {
    background-color: #f8fafc;
    margin-bottom: 12px;
    padding: 14px 18px;
    border-radius: 10px;
    color: #1f2937;
    font-weight: 700;
    border-left: 4px solid #2563eb;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.service-detail-alt .service-list li {
    background-color: #ffffff;
}


/* ================= AUTOMATION SECTION ================= */

.automation-section {
    background-color: #ffffff;
}

.automation-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.automation-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.automation-point {
    background-color: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    transition: 0.3s ease;
}

.automation-point:hover {
    transform: translateY(-6px);
    background-color: #eff6ff;
    border-color: #bfdbfe;
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.12);
}

.automation-point h3 {
    font-size: 20px;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 10px;
}

.automation-point p {
    color: #6b7280;
    font-size: 15px;
}

.automation-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.13);
}


/* ================= WHY SERVICES SECTION ================= */

.why-services-section {
    background-color: #f8fafc;
}


/* ================= SERVICES PROCESS SECTION ================= */

.services-process-section {
    background-color: #ffffff;
}

.services-process-section .process-grid {
    grid-template-columns: repeat(3, 1fr);
}


/* ================= INDUSTRIES SECTION ================= */

.industries-section {
    background-color: #f8fafc;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.industry-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 30px 24px;
    transition: 0.3s ease;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.industry-card:hover {
    transform: translateY(-8px);
    background-color: #eff6ff;
    border-color: #bfdbfe;
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

.industry-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.industry-card p {
    color: #6b7280;
    font-size: 16px;
}


/* ================= TECHNOLOGY SECTION ================= */

.technology-section {
    background-color: #ffffff;
}

.technology-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.technology-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.technology-item {
    background-color: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 12px;
    padding: 18px 20px;
    font-size: 17px;
    font-weight: 800;
    color: #1f2937;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.technology-item:hover {
    transform: translateY(-5px);
    background-color: #eff6ff;
    color: #1d4ed8;
}


/* ================= SERVICES PAGE RESPONSIVE ================= */

@media (max-width: 1024px) {
    .service-detail-container,
    .automation-container,
    .technology-container {
        grid-template-columns: 1fr;
    }

    .reverse-layout .service-detail-content,
    .reverse-layout .service-detail-image-box {
        order: unset;
    }

    .services-process-section .process-grid,
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-image,
    .automation-image {
        height: 420px;
    }
}


@media (max-width: 768px) {
    .service-feature-grid,
    .automation-points,
    .technology-list,
    .services-process-section .process-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-image,
    .automation-image {
        height: 340px;
    }

    .service-feature-box,
    .automation-point,
    .industry-card {
        padding: 22px;
    }
}


@media (max-width: 520px) {
    .service-detail-image,
    .automation-image {
        height: 260px;
    }

    .technology-item {
        font-size: 15px;
        padding: 15px 16px;
    }
}



/* =====================================================
   CONTACT PAGE CSS
===================================================== */


/* ================= CONTACT HERO ================= */

.contact-hero {
    background: linear-gradient(135deg, #0f172a, #1e3a8a, #2563eb);
}


/* ================= CONTACT INTRO SECTION ================= */

.contact-intro-section {
    background-color: #ffffff;
}

.contact-intro-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.contact-intro-image-box {
    position: relative;
}

.contact-intro-image-box::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background-color: #2563eb;
    opacity: 0.12;
    border-radius: 50%;
    top: -35px;
    right: -35px;
    z-index: 0;
}

.contact-intro-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.13);
    position: relative;
    z-index: 1;
}

.contact-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 32px;
}

.contact-highlight-box {
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #2563eb;
    border-radius: 14px;
    padding: 22px;
    transition: 0.3s ease;
}

.contact-highlight-box:hover {
    transform: translateY(-6px);
    background-color: #eff6ff;
    border-color: #bfdbfe;
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.12);
}

.contact-highlight-box h3 {
    font-size: 18px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 10px;
}

.contact-highlight-box p {
    color: #6b7280;
    font-size: 15px;
}


/* ================= CONTACT FORM SECTION ================= */

.contact-form-section {
    background-color: #f8fafc;
}

.contact-main-container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-form-box {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 42px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-size: 34px;
    line-height: 1.2;
    color: #0f172a;
    font-weight: 900;
    margin-bottom: 14px;
}

.contact-form-text {
    color: #6b7280;
    font-size: 17px;
    margin-bottom: 30px;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    color: #1f2937;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 9px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    outline: none;
    border-radius: 12px;
    padding: 15px 16px;
    font-size: 16px;
    color: #1f2937;
    background-color: #ffffff;
    transition: 0.3s ease;
    font-family: Arial, Helvetica, sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.contact-submit-btn {
    margin-top: 4px;
}


/* ================= CONTACT INFO CARDS ================= */

.contact-info-area {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-info-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    transition: 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    border-color: #bfdbfe;
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.12);
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 12px;
}

.contact-info-card p {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 16px;
}

.contact-email-link {
    display: inline-block;
    color: #2563eb;
    font-size: 17px;
    font-weight: 900;
    word-break: break-word;
    transition: 0.3s ease;
}

.contact-email-link:hover {
    color: #1d4ed8;
}

.contact-side-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}


/* ================= CONTACT PURPOSE SECTION ================= */

.contact-purpose-section {
    background-color: #ffffff;
}

.contact-purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-purpose-card {
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 30px 24px;
    transition: 0.3s ease;
}

.contact-purpose-card:hover {
    transform: translateY(-8px);
    background-color: #eff6ff;
    border-color: #bfdbfe;
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

.contact-purpose-card h3 {
    font-size: 21px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 12px;
}

.contact-purpose-card p {
    color: #6b7280;
    font-size: 16px;
}


/* ================= CONTACT PROCESS SECTION ================= */

.contact-process-section {
    background-color: #f8fafc;
}


/* ================= CONTACT FAQ SECTION ================= */

.contact-faq-section {
    background-color: #ffffff;
}


/* ================= CONTACT RESPONSIVE ================= */

@media (max-width: 1024px) {
    .contact-intro-container,
    .contact-main-container {
        grid-template-columns: 1fr;
    }

    .contact-highlights,
    .contact-purpose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-intro-image {
        height: 420px;
    }

    .contact-side-image {
        height: 360px;
    }
}


@media (max-width: 768px) {
    .form-row,
    .contact-highlights,
    .contact-purpose-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 30px 24px;
    }

    .contact-form-title {
        font-size: 28px;
    }

    .contact-intro-image,
    .contact-side-image {
        height: 340px;
    }

    .contact-info-card,
    .contact-purpose-card {
        padding: 24px;
    }
}


@media (max-width: 520px) {
    .contact-form-box {
        padding: 26px 20px;
    }

    .contact-form-title {
        font-size: 25px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 15px;
        padding: 14px;
    }

    .contact-intro-image,
    .contact-side-image {
        height: 260px;
    }
}