﻿/*All services*/

/* ---------- GLOBAL RESET / ADDITIONS ---------- */
.services-page {
    background: #f8faff;
}

    .services-page .container {
        max-width: 1280px;
    }

.section-title {
    font-weight: 700;
    color: #1e1a4b;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

    .section-title:after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: #A8332D;
        margin: 10px auto 0;
        border-radius: 4px;
    }

.section-sub {
    color: #5a5a7a;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

/* ---------- HERO (modernized) ---------- */
.services-hero {
    background: linear-gradient(135deg, #1e1a4b 0%, #2F2A6B 70%, #3d3580 100%);
    color: white;
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 6px solid #A8332D;
}

    .services-hero .drone-silhouette {
        position: absolute;
        right: 8%;
        top: 20%;
        font-size: 10rem;
        color: rgba(255,255,255,0.04);
        transform: rotate(15deg);
        pointer-events: none;
    }

    .services-hero h1 {
        font-size: 3.4rem;
        font-weight: 800;
        letter-spacing: -0.5px;
    }

        .services-hero h1 span {
            color: #f0b3ae;
        }

    .services-hero p {
        font-size: 1.25rem;
        opacity: 0.85;
        max-width: 680px;
        margin: 0 auto;
    }

/* ---------- SERVICE CARDS (new style) ---------- */
.service-grid-modern {
    padding: 70px 0 60px;
}

.service-card-modern {
    background: white;
    border-radius: 28px;
    padding: 30px 22px;
    box-shadow: 0 15px 35px -10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(47, 42, 107, 0.05);
    position: relative;
    overflow: hidden;
}

    .service-card-modern:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 45px -12px rgba(47, 42, 107, 0.2);
        border-color: #A8332D;
    }

    .service-card-modern .service-icon {
        width: 60px;
        height: 60px;
        background: #2F2A6B;
        color: white;
        font-size: 1.8rem;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        transition: 0.2s;
    }

    .service-card-modern:hover .service-icon {
        background: #A8332D;
    }

    .service-card-modern h4 {
        font-weight: 700;
        color: #1e1a4b;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .service-card-modern p {
        color: #5a5a7a;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .service-card-modern .badge-tag {
        position: absolute;
        top: 16px;
        right: 16px;
        background: #f0f0f9;
        color: #2F2A6B;
        font-size: 0.65rem;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 30px;
        letter-spacing: 0.3px;
    }

/* ---------- PLATFORMS & SOLUTIONS (cards) ---------- */
.platform-section {
    background: #f0eff9;
    padding: 70px 0 60px;
}

.platform-card {
    background: white;
    border-radius: 24px;
    padding: 28px 22px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.02);
    height: 100%;
    transition: 0.25s;
    border-bottom: 4px solid #2F2A6B;
    text-align: center;
}

    .platform-card:hover {
        border-bottom-color: #A8332D;
        transform: scale(1.02);
        box-shadow: 0 16px 35px -6px rgba(47,42,107,0.12);
    }

    .platform-card i {
        font-size: 2.6rem;
        color: #A8332D;
        margin-bottom: 15px;
    }

    .platform-card h5 {
        font-weight: 700;
        color: #1e1a4b;
    }

    .platform-card p {
        color: #5a5a7a;
        font-size: 0.9rem;
    }

/* ---------- EXPERT SOLUTIONS (pill style) ---------- */
.expert-section {
    padding: 60px 0 70px;
}

.expert-pill {
    background: white;
    border-radius: 60px;
    padding: 18px 30px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.03);
    border: 1px solid #eae8f2;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #1e1a4b;
    margin: 6px 8px;
}

    .expert-pill i {
        color: #A8332D;
        font-size: 1.4rem;
    }

    .expert-pill:hover {
        background: #2F2A6B;
        color: white;
        border-color: #2F2A6B;
        transform: translateY(-3px);
    }

        .expert-pill:hover i {
            color: white;
        }

/* ---------- WHY CHOOSE (refreshed) ---------- */
.why-us-section {
    background: #1e1a4b;
    color: white;
    padding: 60px 0;
}

.why-us-title {
    font-weight: 700;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

    .why-us-title span {
        color: #f0b3ae;
    }

.why-card {
    text-align: center;
    padding: 20px 10px;
    background: rgba(255,255,255,0.04);
    border-radius: 30px;
    backdrop-filter: blur(2px);
    transition: 0.2s;
}

    .why-card:hover {
        background: rgba(255,255,255,0.09);
    }

    .why-card i {
        font-size: 2.8rem;
        color: #f0b3ae;
        margin-bottom: 10px;
    }

    .why-card h5 {
        font-weight: 700;
        font-size: 1.1rem;
    }

    .why-card p {
        opacity: 0.75;
        font-size: 0.9rem;
        margin-bottom: 0;
    }

/* ---------- CTA ---------- */
.cta-section {
    background: #2F2A6B;
    padding: 60px 0;
    text-align: center;
    color: white;
    border-top: 5px solid #A8332D;
}

.btn-primary-custom {
    background: #A8332D;
    padding: 14px 48px;
    font-size: 1.1rem;
    border-radius: 60px;
    border: none;
    color: white;
    font-weight: 600;
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
}

    .btn-primary-custom:hover {
        background: #8f2823;
        color: white;
        transform: scale(1.02);
        box-shadow: 0 10px 25px -5px rgba(168, 51, 45, 0.4);
    }

/* ---------- UTILITY ---------- */
.text-muted-light {
    color: #b0b0d0;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

.gap-2 {
    gap: 0.5rem;
}

.flex-wrap {
    flex-wrap: wrap;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}



/* ---------- GLOBAL RESET ---------- */
.hr-page {
    background: #ffffff;
    color: #1a1a2e;
}

    .hr-page .container {
        max-width: 1280px;
    }

.section-title {
    font-weight: 700;
    color: #1a1a2e;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

    .section-title:after {
        content: '';
        display: block;
        width: 70px;
        height: 4px;
        background: #e11d48;
        margin: 12px auto 0;
        border-radius: 4px;
    }

.section-sub {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto 2.5rem auto;
}

/* ---------- HERO SECTION ---------- */
.hr-hero {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    padding: 80px 0 70px;
    text-align: center;
    border-bottom: 1px solid #fecaca;
    position: relative;
    overflow: hidden;
}

    .hr-hero .bg-icon {
        position: absolute;
        font-size: 16rem;
        color: rgba(225, 29, 72, 0.04);
        right: -5%;
        top: -10%;
        transform: rotate(10deg);
        pointer-events: none;
    }

    .hr-hero .bg-icon-2 {
        position: absolute;
        font-size: 10rem;
        color: rgba(225, 29, 72, 0.03);
        left: -3%;
        bottom: -5%;
        pointer-events: none;
    }

    .hr-hero .hero-badge {
        display: inline-block;
        background: rgba(225, 29, 72, 0.08);
        padding: 8px 28px;
        border-radius: 60px;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 1px;
        border: 1px solid rgba(225, 29, 72, 0.12);
        margin-bottom: 20px;
        color: #e11d48;
    }

    .hr-hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        letter-spacing: -2px;
        color: #1a1a2e;
    }

        .hr-hero h1 span {
            color: #e11d48;
        }

    .hr-hero p {
        font-size: 1.2rem;
        color: #4b5563;
        max-width: 700px;
        margin: 0 auto;
    }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

    .hero-stats .stat-item {
        text-align: center;
    }

    .hero-stats .stat-number {
        font-size: 2.2rem;
        font-weight: 800;
        color: #e11d48;
    }

    .hero-stats .stat-label {
        font-size: 0.85rem;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

/* ---------- SERVICES GRID ---------- */
.hr-services-grid {
    padding: 70px 0 60px;
    background: #ffffff;
}

.hr-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    height: 100%;
    border: 1px solid #f0f2f5;
    position: relative;
    overflow: hidden;
}

    .hr-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #e11d48, #fb7185);
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .hr-card:hover::before {
        opacity: 1;
    }

    .hr-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(225, 29, 72, 0.08);
        border-color: #e11d48;
    }

    .hr-card .card-number {
        font-size: 0.75rem;
        font-weight: 700;
        color: #e11d48;
        background: rgba(225, 29, 72, 0.08);
        padding: 4px 14px;
        border-radius: 30px;
        display: inline-block;
        margin-bottom: 16px;
        letter-spacing: 0.5px;
    }

    .hr-card .card-icon {
        width: 64px;
        height: 64px;
        background: rgba(225, 29, 72, 0.08);
        color: #e11d48;
        font-size: 1.8rem;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        transition: 0.3s;
    }

    .hr-card:hover .card-icon {
        background: #e11d48;
        color: #ffffff;
    }

    .hr-card h4 {
        font-weight: 700;
        color: #1a1a2e;
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .hr-card p {
        color: #6b7280;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .hr-card .feature-tags {
        margin-top: 16px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

        .hr-card .feature-tags span {
            background: #f3f4f6;
            color: #4b5563;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 30px;
            letter-spacing: 0.3px;
        }

            .hr-card .feature-tags span i {
                color: #e11d48;
                margin-right: 4px;
            }

/* ---------- SPECIALIZED SERVICES ---------- */
.specialized-section {
    background: #f8fafc;
    padding: 60px 0;
    border-top: 1px solid #f0f2f5;
    border-bottom: 1px solid #f0f2f5;
}

.specialized-card {
    text-align: center;
    padding: 28px 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f0f2f5;
    height: 100%;
    transition: 0.3s;
}

    .specialized-card:hover {
        border-color: #e11d48;
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(225, 29, 72, 0.06);
    }

    .specialized-card i {
        font-size: 2.6rem;
        color: #e11d48;
        margin-bottom: 14px;
    }

    .specialized-card h5 {
        color: #1a1a2e;
        font-weight: 700;
        font-size: 1rem;
    }

    .specialized-card p {
        color: #6b7280;
        font-size: 0.88rem;
        margin-bottom: 0;
    }

/* ---------- INDUSTRY SECTORS ---------- */
.sectors-section {
    padding: 60px 0;
    background: #ffffff;
}

.sector-item {
    text-align: center;
    padding: 24px 15px;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid #f0f2f5;
    transition: 0.3s;
    height: 100%;
}

    .sector-item:hover {
        border-color: #e11d48;
        background: #fef2f2;
    }

    .sector-item i {
        font-size: 2.2rem;
        color: #e11d48;
        margin-bottom: 10px;
    }

    .sector-item h5 {
        color: #1a1a2e;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .sector-item p {
        color: #6b7280;
        font-size: 0.85rem;
        margin-bottom: 0;
    }

/* ---------- WHY CHOOSE ---------- */
.why-hr {
    padding: 60px 0;
    background: #f8fafc;
    border-top: 1px solid #f0f2f5;
}

.why-card-hr {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid #f0f2f5;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

    .why-card-hr:hover {
        border-color: #e11d48;
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(225, 29, 72, 0.06);
    }

    .why-card-hr i {
        font-size: 2.4rem;
        color: #e11d48;
        margin-bottom: 14px;
    }

    .why-card-hr h5 {
        color: #1a1a2e;
        font-weight: 700;
    }

    .why-card-hr p {
        color: #6b7280;
        font-size: 0.9rem;
        margin-bottom: 0;
    }

/* ---------- CTA SECTION ---------- */
.cta-hr {
    background: #1a1a2e;
    padding: 60px 0;
    text-align: center;
    color: white;
    border-top: 4px solid #e11d48;
}

.btn-hr-cta {
    background: #e11d48;
    padding: 14px 50px;
    font-size: 1.1rem;
    border-radius: 60px;
    border: none;
    color: #ffffff;
    font-weight: 700;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.3);
}

    .btn-hr-cta:hover {
        transform: scale(1.04);
        box-shadow: 0 12px 35px rgba(225, 29, 72, 0.5);
        color: #ffffff;
        background: #be123c;
    }

.cta-hr p {
    color: #9ca3af;
}

/* ---------- UTILITY ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

.text-red {
    color: #e11d48;
}

.bg-light-red {
    background: #fef2f2;
}

.border-light {
    border-color: #f0f2f5 !important;
}

/*Our Platforms*/


/* ---------- GLOBAL RESET ---------- */
.platforms-page {
    background: #ffffff;
    color: #1a1a2e;
}

    .platforms-page .container {
        max-width: 1280px;
    }

.section-title {
    font-weight: 700;
    color: #1a1a2e;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

    .section-title:after {
        content: '';
        display: block;
        width: 70px;
        height: 4px;
        background: #7c3aed;
        margin: 12px auto 0;
        border-radius: 4px;
    }

.section-sub {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto 2.5rem auto;
}

/* ---------- HERO SECTION ---------- */
.platforms-hero {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    padding: 80px 0 70px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

    .platforms-hero .bg-shape {
        position: absolute;
        font-size: 16rem;
        color: rgba(124, 58, 237, 0.04);
        right: -5%;
        top: -10%;
        transform: rotate(10deg);
        pointer-events: none;
    }

    .platforms-hero .bg-shape-2 {
        position: absolute;
        font-size: 10rem;
        color: rgba(124, 58, 237, 0.03);
        left: -3%;
        bottom: -5%;
        pointer-events: none;
    }

    .platforms-hero .hero-badge {
        display: inline-block;
        background: rgba(124, 58, 237, 0.1);
        padding: 8px 28px;
        border-radius: 60px;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 1px;
        border: 1px solid rgba(124, 58, 237, 0.15);
        margin-bottom: 20px;
        color: #7c3aed;
    }

    .platforms-hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        letter-spacing: -2px;
        color: #1a1a2e;
    }

        .platforms-hero h1 span {
            color: #7c3aed;
        }

    .platforms-hero p {
        font-size: 1.2rem;
        color: #4b5563;
        max-width: 700px;
        margin: 0 auto;
    }

/* ---------- PLATFORM CARDS GRID ---------- */
.platforms-grid {
    padding: 70px 0 60px;
    background: #ffffff;
}

.platform-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    height: 100%;
    border: 1px solid #f0f2f5;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .platform-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #7c3aed, #a78bfa);
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .platform-card:hover::before {
        opacity: 1;
    }

    .platform-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(124, 58, 237, 0.08);
        border-color: #7c3aed;
    }

    .platform-card .card-icon {
        width: 70px;
        height: 70px;
        background: rgba(124, 58, 237, 0.08);
        color: #7c3aed;
        font-size: 2.2rem;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
        transition: 0.3s;
    }

    .platform-card:hover .card-icon {
        background: #7c3aed;
        color: #ffffff;
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
    }

    .platform-card .card-badge {
        display: inline-block;
        background: rgba(124, 58, 237, 0.06);
        color: #7c3aed;
        font-size: 0.65rem;
        font-weight: 700;
        padding: 4px 14px;
        border-radius: 30px;
        margin-bottom: 14px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .platform-card h5 {
        font-weight: 700;
        color: #1a1a2e;
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .platform-card p {
        color: #6b7280;
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .platform-card .feature-list {
        margin-top: 16px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

        .platform-card .feature-list span {
            background: #f3f4f6;
            color: #4b5563;
            font-size: 0.65rem;
            font-weight: 600;
            padding: 3px 12px;
            border-radius: 30px;
        }

/* ---------- SOLUTION HIGHLIGHTS ---------- */
.solutions-highlights {
    background: #f8fafc;
    padding: 60px 0;
    border-top: 1px solid #f0f2f5;
    border-bottom: 1px solid #f0f2f5;
}

.solution-item {
    text-align: center;
    padding: 24px 15px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f0f2f5;
    transition: 0.3s;
    height: 100%;
}

    .solution-item:hover {
        border-color: #7c3aed;
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(124, 58, 237, 0.06);
    }

    .solution-item i {
        font-size: 2.4rem;
        color: #7c3aed;
        margin-bottom: 12px;
    }

    .solution-item h5 {
        color: #1a1a2e;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .solution-item p {
        color: #6b7280;
        font-size: 0.85rem;
        margin-bottom: 0;
    }

/* ---------- KEY FEATURES SECTION ---------- */
.key-features {
    padding: 60px 0;
    background: #ffffff;
}

.feature-card {
    text-align: center;
    padding: 28px 20px;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid #f0f2f5;
    height: 100%;
    transition: 0.3s;
}

    .feature-card:hover {
        border-color: #7c3aed;
        background: #faf8ff;
    }

    .feature-card i {
        font-size: 2.2rem;
        color: #7c3aed;
        margin-bottom: 12px;
    }

    .feature-card h5 {
        color: #1a1a2e;
        font-weight: 600;
    }

    .feature-card p {
        color: #6b7280;
        font-size: 0.9rem;
        margin-bottom: 0;
    }

/* ---------- CTA SECTION ---------- */
.cta-platforms {
    background: #1a1a2e;
    padding: 60px 0;
    text-align: center;
    color: white;
    border-top: 4px solid #7c3aed;
}

.btn-platforms-cta {
    background: #7c3aed;
    padding: 14px 50px;
    font-size: 1.1rem;
    border-radius: 60px;
    border: none;
    color: #ffffff;
    font-weight: 700;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

    .btn-platforms-cta:hover {
        transform: scale(1.04);
        box-shadow: 0 12px 35px rgba(124, 58, 237, 0.5);
        color: #ffffff;
        background: #6d28d9;
    }

.cta-platforms p {
    color: #9ca3af;
}

/* ---------- UTILITY ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

.text-purple {
    color: #7c3aed;
}

.bg-light-purple {
    background: #f5f3ff;
}

.border-light {
    border-color: #f0f2f5 !important;
}

/*our core services*/

/* ---------- GLOBAL RESET ---------- */
.core-services-page {
    background: #ffffff;
    color: #1a1a2e;
}

    .core-services-page .container {
        max-width: 1280px;
    }

.section-title {
    font-weight: 700;
    color: #1a1a2e;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

    .section-title:after {
        content: '';
        display: block;
        width: 70px;
        height: 4px;
        background: #2563eb;
        margin: 12px auto 0;
        border-radius: 4px;
    }

.section-sub {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto 2.5rem auto;
}

/* ---------- HERO SECTION ---------- */
.core-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    padding: 80px 0 70px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

    .core-hero .hero-icon {
        font-size: 4rem;
        color: #2563eb;
        margin-bottom: 20px;
        opacity: 0.2;
    }

    .core-hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        letter-spacing: -2px;
        color: #1a1a2e;
    }

        .core-hero h1 span {
            color: #2563eb;
        }

    .core-hero p {
        font-size: 1.2rem;
        color: #4b5563;
        max-width: 700px;
        margin: 0 auto;
    }

/* ---------- CORE SERVICES GRID ---------- */
.core-services-grid {
    padding: 70px 0 60px;
    background: #ffffff;
}

.core-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    height: 100%;
    border: 1px solid #f0f2f5;
    position: relative;
    overflow: hidden;
}

    .core-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #2563eb, #60a5fa);
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .core-card:hover::before {
        opacity: 1;
    }

    .core-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08);
        border-color: #2563eb;
    }

    .core-card .card-number {
        font-size: 0.8rem;
        font-weight: 700;
        color: #2563eb;
        background: rgba(37, 99, 235, 0.08);
        padding: 4px 14px;
        border-radius: 30px;
        display: inline-block;
        margin-bottom: 16px;
        letter-spacing: 0.5px;
    }

    .core-card .card-icon {
        width: 64px;
        height: 64px;
        background: rgba(37, 99, 235, 0.08);
        color: #2563eb;
        font-size: 1.8rem;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        transition: 0.3s;
    }

    .core-card:hover .card-icon {
        background: #2563eb;
        color: #ffffff;
    }

    .core-card h4 {
        font-weight: 700;
        color: #1a1a2e;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .core-card p {
        color: #6b7280;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .core-card .card-features {
        margin-top: 16px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

        .core-card .card-features span {
            background: #f3f4f6;
            color: #4b5563;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 30px;
            letter-spacing: 0.3px;
        }

            .core-card .card-features span i {
                color: #2563eb;
                margin-right: 4px;
            }

/* ---------- SERVICE HIGHLIGHTS (ICON ROW) ---------- */
.highlights-section {
    background: #f8fafc;
    padding: 60px 0;
    border-top: 1px solid #f0f2f5;
    border-bottom: 1px solid #f0f2f5;
}

.highlight-item {
    text-align: center;
    padding: 20px 15px;
}

    .highlight-item i {
        font-size: 2.6rem;
        color: #2563eb;
        margin-bottom: 12px;
    }

    .highlight-item h5 {
        color: #1a1a2e;
        font-weight: 600;
        font-size: 1rem;
    }

    .highlight-item p {
        color: #6b7280;
        font-size: 0.85rem;
        margin-bottom: 0;
    }

/* ---------- WHY CORE SERVICES ---------- */
.why-core {
    padding: 60px 0;
    background: #ffffff;
}

.why-card-core {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid #f0f2f5;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

    .why-card-core:hover {
        border-color: #2563eb;
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(37, 99, 235, 0.06);
    }

    .why-card-core i {
        font-size: 2.4rem;
        color: #2563eb;
        margin-bottom: 14px;
    }

    .why-card-core h5 {
        color: #1a1a2e;
        font-weight: 700;
    }

    .why-card-core p {
        color: #6b7280;
        font-size: 0.9rem;
        margin-bottom: 0;
    }

/* ---------- CTA SECTION ---------- */
.cta-core {
    background: #1a1a2e;
    padding: 60px 0;
    text-align: center;
    color: white;
    border-top: 4px solid #2563eb;
}

.btn-core-cta {
    background: #2563eb;
    padding: 14px 50px;
    font-size: 1.1rem;
    border-radius: 60px;
    border: none;
    color: #ffffff;
    font-weight: 700;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

    .btn-core-cta:hover {
        transform: scale(1.04);
        box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
        color: #ffffff;
        background: #1d4ed8;
    }

.cta-core p {
    color: #9ca3af;
}

/* ---------- UTILITY ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

.text-blue {
    color: #2563eb;
}

.bg-light {
    background: #f8fafc;
}

.border-light {
    border-color: #f0f2f5 !important;
}

/*doren services*/

/* ---------- GLOBAL RESET - WHITE THEME ---------- */
.camera-page {
    background: #ffffff;
    color: #1a1a2e;
}

    .camera-page .container {
        max-width: 1280px;
    }

.section-title {
    font-weight: 700;
    color: #1a1a2e;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

    .section-title:after {
        content: '';
        display: block;
        width: 70px;
        height: 4px;
        background: #2563eb;
        margin: 12px auto 0;
        border-radius: 4px;
    }

.section-sub {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto 2.5rem auto;
}

/* ---------- HERO: CLEAN WHITE ---------- */
.camera-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    color: #1a1a2e;
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e5e7eb;
}

    .camera-hero .bg-drone {
        position: absolute;
        font-size: 20rem;
        color: rgba(37, 99, 235, 0.04);
        right: -5%;
        top: -15%;
        transform: rotate(15deg);
        pointer-events: none;
    }

    .camera-hero .bg-lens {
        position: absolute;
        font-size: 12rem;
        color: rgba(37, 99, 235, 0.03);
        left: -3%;
        bottom: -10%;
        pointer-events: none;
    }

    .camera-hero .hero-badge {
        display: inline-block;
        background: rgba(37, 99, 235, 0.08);
        padding: 8px 28px;
        border-radius: 60px;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 1px;
        border: 1px solid rgba(37, 99, 235, 0.12);
        margin-bottom: 20px;
        color: #2563eb;
    }

    .camera-hero h1 {
        font-size: 3.8rem;
        font-weight: 800;
        letter-spacing: -2px;
        color: #1a1a2e;
    }

        .camera-hero h1 span {
            color: #2563eb;
        }

    .camera-hero p {
        font-size: 1.25rem;
        opacity: 0.8;
        max-width: 700px;
        margin: 0 auto;
        color: #4b5563;
    }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

    .hero-stats .stat-item {
        text-align: center;
    }

    .hero-stats .stat-number {
        font-size: 2.2rem;
        font-weight: 800;
        color: #2563eb;
    }

    .hero-stats .stat-label {
        font-size: 0.85rem;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

/* ---------- CAMERA SERVICES GRID - WHITE CARDS ---------- */
.camera-services-grid {
    padding: 70px 0 60px;
    background: #ffffff;
}

.camera-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f2f5;
    position: relative;
}

    .camera-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 40px rgba(37, 99, 235, 0.08);
        border-color: #2563eb;
    }

    .camera-card .card-icon {
        width: 64px;
        height: 64px;
        background: rgba(37, 99, 235, 0.08);
        color: #2563eb;
        font-size: 2rem;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        transition: 0.3s;
    }

    .camera-card:hover .card-icon {
        background: #2563eb;
        color: #ffffff;
    }

    .camera-card h4 {
        font-weight: 700;
        color: #1a1a2e;
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .camera-card p {
        color: #6b7280;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .camera-card .feature-tag {
        display: inline-block;
        background: #f3f4f6;
        color: #4b5563;
        font-size: 0.7rem;
        font-weight: 600;
        padding: 4px 14px;
        border-radius: 30px;
        margin-top: 14px;
        letter-spacing: 0.3px;
    }

        .camera-card .feature-tag i {
            margin-right: 4px;
            color: #2563eb;
        }

/* ---------- TECHNOLOGY SHOWCASE - WHITE ---------- */
.tech-showcase {
    background: #f8fafc;
    padding: 70px 0;
    border-top: 1px solid #f0f2f5;
    border-bottom: 1px solid #f0f2f5;
}

.tech-item {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f0f2f5;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

    .tech-item:hover {
        border-color: #2563eb;
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(37, 99, 235, 0.06);
    }

    .tech-item i {
        font-size: 2.5rem;
        color: #2563eb;
        margin-bottom: 15px;
    }

    .tech-item h5 {
        color: #1a1a2e;
        font-weight: 600;
    }

    .tech-item p {
        color: #6b7280;
        font-size: 0.9rem;
        margin-bottom: 0;
    }

/* ---------- WHY CHOOSE - WHITE ---------- */
.why-camera {
    padding: 60px 0;
    background: #ffffff;
}

.why-card-cam {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid #f0f2f5;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

    .why-card-cam:hover {
        border-color: #2563eb;
        transform: scale(1.02);
        box-shadow: 0 12px 30px rgba(37, 99, 235, 0.06);
    }

    .why-card-cam i {
        font-size: 2.4rem;
        color: #2563eb;
        margin-bottom: 14px;
    }

    .why-card-cam h5 {
        color: #1a1a2e;
        font-weight: 700;
    }

    .why-card-cam p {
        color: #6b7280;
        font-size: 0.9rem;
        margin-bottom: 0;
    }

/* ---------- PORTFOLIO PREVIEW - WHITE ---------- */
.portfolio-preview {
    padding: 60px 0;
    background: #f8fafc;
    border-top: 1px solid #f0f2f5;
}

.portfolio-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

    .portfolio-item:hover {
        border-color: #2563eb;
        transform: scale(1.02);
        box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
    }

    .portfolio-item i {
        font-size: 3rem;
        color: rgba(37, 99, 235, 0.1);
    }

    .portfolio-item .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
        color: white;
        opacity: 0;
        transition: 0.3s;
    }

    .portfolio-item:hover .overlay {
        opacity: 1;
    }

    .portfolio-item .overlay span {
        font-size: 0.85rem;
        font-weight: 600;
    }

/* ---------- CTA - WHITE THEME ---------- */
.cta-camera {
    background: #1a1a2e;
    padding: 60px 0;
    text-align: center;
    color: white;
    border-top: 4px solid #2563eb;
}

.btn-camera-cta {
    background: #2563eb;
    padding: 14px 50px;
    font-size: 1.1rem;
    border-radius: 60px;
    border: none;
    color: #ffffff;
    font-weight: 700;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

    .btn-camera-cta:hover {
        transform: scale(1.04);
        box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
        color: #ffffff;
        background: #1d4ed8;
    }

.cta-camera p {
    color: #9ca3af;
}

/* ---------- UTILITY ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

.text-blue {
    color: #2563eb;
}

.bg-light-gray {
    background: #f8fafc;
}

.border-light {
    border-color: #f0f2f5 !important;
}


/*Airport services */


/* ---------- GLOBAL RESET / ADDITIONS ---------- */
.airport-page {
    background: #f4f7fc;
}

    .airport-page .container {
        max-width: 1280px;
    }

.section-title {
    font-weight: 700;
    color: #0b1a3a;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

    .section-title:after {
        content: '';
        display: block;
        width: 70px;
        height: 4px;
        background: #c89b3c;
        margin: 12px auto 0;
        border-radius: 4px;
    }

.section-sub {
    color: #4a5a72;
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto 2.5rem auto;
}

/* ---------- HERO: AVIATION THEME ---------- */
.airport-hero {
    background: linear-gradient(145deg, #0b1a3a 0%, #1a2d5a 60%, #2a4070 100%);
    color: white;
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 6px solid #c89b3c;
}

    .airport-hero .bg-icon {
        position: absolute;
        font-size: 18rem;
        color: rgba(255,255,255,0.03);
        right: -5%;
        top: -10%;
        transform: rotate(10deg);
        pointer-events: none;
    }

    .airport-hero .bg-icon-2 {
        position: absolute;
        font-size: 10rem;
        color: rgba(255,255,255,0.02);
        left: -2%;
        bottom: -10%;
        transform: rotate(-15deg);
        pointer-events: none;
    }

    .airport-hero h1 {
        font-size: 3.8rem;
        font-weight: 800;
        letter-spacing: -1px;
    }

        .airport-hero h1 span {
            color: #f5d98f;
        }

    .airport-hero .hero-badge {
        display: inline-block;
        background: rgba(200, 155, 60, 0.2);
        padding: 8px 28px;
        border-radius: 60px;
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 1px;
        border: 1px solid rgba(200, 155, 60, 0.4);
        margin-bottom: 20px;
        backdrop-filter: blur(4px);
    }

    .airport-hero p {
        font-size: 1.3rem;
        opacity: 0.85;
        max-width: 700px;
        margin: 0 auto;
    }

/* ---------- SERVICE CARDS: AIRPORT FOCUS ---------- */
.airport-services-grid {
    padding: 70px 0 60px;
}

.airport-card {
    background: white;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 12px 32px -8px rgba(11, 26, 58, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 6px solid #c89b3c;
    position: relative;
    overflow: hidden;
}

    .airport-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 48px -12px rgba(11, 26, 58, 0.18);
    }

    .airport-card .card-icon {
        width: 64px;
        height: 64px;
        background: #0b1a3a;
        color: #f5d98f;
        font-size: 2rem;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        transition: 0.25s;
    }

    .airport-card:hover .card-icon {
        background: #c89b3c;
        color: #0b1a3a;
    }

    .airport-card h4 {
        font-weight: 700;
        color: #0b1a3a;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .airport-card p {
        color: #4a5a72;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .airport-card .feature-tag {
        display: inline-block;
        background: #eef3f9;
        color: #0b1a3a;
        font-size: 0.7rem;
        font-weight: 700;
        padding: 4px 14px;
        border-radius: 30px;
        margin-top: 14px;
        letter-spacing: 0.3px;
    }

/* ---------- PROCESS / WORKFLOW SECTION ---------- */
.process-section {
    background: #0b1a3a;
    padding: 70px 0 60px;
    color: white;
}

    .process-section .section-title {
        color: white;
    }

        .process-section .section-title:after {
            background: #c89b3c;
        }

.process-step {
    text-align: center;
    padding: 20px 12px;
}

    .process-step .step-number {
        width: 56px;
        height: 56px;
        background: #c89b3c;
        color: #0b1a3a;
        font-weight: 800;
        font-size: 1.4rem;
        border-radius: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
    }

    .process-step h5 {
        font-weight: 700;
        color: #f5d98f;
    }

    .process-step p {
        opacity: 0.8;
        font-size: 0.95rem;
    }

/* ---------- WHY AIRPORT SERVICES ---------- */
.why-airport {
    padding: 60px 0;
    background: #f4f7fc;
}

.why-card-air {
    background: white;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.02);
    border-bottom: 4px solid #0b1a3a;
    height: 100%;
    transition: 0.2s;
}

    .why-card-air:hover {
        border-bottom-color: #c89b3c;
        transform: scale(1.02);
    }

    .why-card-air i {
        font-size: 2.6rem;
        color: #c89b3c;
        margin-bottom: 14px;
    }

    .why-card-air h5 {
        font-weight: 700;
        color: #0b1a3a;
    }

    .why-card-air p {
        color: #4a5a72;
        font-size: 0.9rem;
    }

/* ---------- CTA ---------- */
.cta-airport {
    background: linear-gradient(145deg, #0b1a3a, #1a2d5a);
    padding: 60px 0;
    text-align: center;
    color: white;
    border-top: 6px solid #c89b3c;
}

.btn-airport-cta {
    background: #c89b3c;
    padding: 14px 50px;
    font-size: 1.1rem;
    border-radius: 60px;
    border: none;
    color: #0b1a3a;
    font-weight: 700;
    transition: 0.25s;
    text-decoration: none;
    display: inline-block;
}

    .btn-airport-cta:hover {
        background: #f5d98f;
        color: #0b1a3a;
        transform: scale(1.04);
        box-shadow: 0 12px 28px -6px rgba(200, 155, 60, 0.5);
    }

/* ---------- UTILITY ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

.text-gold {
    color: #c89b3c;
}

.bg-gold-light {
    background: rgba(200, 155, 60, 0.06);
}