* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}




/* ================breadcrum section css ================= */



.company-header {
    background-color: #143970;
    margin-top: 100px;
    position: relative; 
    padding: 50px 0 100px;
    overflow: hidden;
    border-bottom: 4px solid #f8f9fa;

}


.company-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    background: linear-gradient(to left, rgba(10, 25, 47, 0.4), rgba(10, 25, 47, 1)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.company-content {
    position: relative;
    z-index: 2;
}


.breadcrumb-company-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 0px;
    display: inline-flex;
    margin-bottom: 30px;
}

.breadcrumb-company-box .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #f8f9fa;
    padding: 0 15px;
    opacity: 0.5;
}

.breadcrumb-company-box a {
    color: #8892b0;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb-company-box a:hover {
    color: #ffffff;
}

.breadcrumb-company-box .active {
    color: #ffffff;
    font-weight: 700;
}

.brand-label {
    color: #f8f9fa;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    display: block;
    margin-bottom: 15px;
    opacity: 0.8;
}


/* =====================MISSION STATEMENT CSS =============== */

.mission-section {
    background-color: #ffffff;
    padding: 120px 0;
}

.mission-text-block {
    border-left: 5px solid #0a192f;
    padding-left: 40px;
    margin-bottom: 60px;
}

.mission-heading {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #8892b0;
    margin-bottom: 15px;
    display: block;
}

.mission-quote {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0a192f;
    line-height: 1.3;
}

.vision-card {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 0;
    height: 100%;
    transition: all 0.4s ease;
}

.vision-card:hover {
    background: #0a192f;
    color: #ffffff;
}

.vision-card:hover .text-muted {
    color: #8892b0 !important;
}

.vision-card:hover .vision-icon {
    color: #ffffff;
}

.vision-icon {
    font-size: 2.5rem;
    color: #0a192f;
    margin-bottom: 25px;
    display: block;
}


/* ===================CORE VALUES SECTION =================== */

.values-section {
    background-color: #fcfdfd;
    padding: 100px 0;
}

.value-card-premium {
    background: #ffffff;
    border: 1px solid #eef0f2;
    padding: 50px 40px;
    height: 100%;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.value-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #0a192f;
    transition: width 0.5s ease;
}

.value-card-premium:hover {
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
    transform: translateY(-5px);
}

.value-card-premium:hover::before {
    width: 100%;
}

.value-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(10, 25, 47, 0.03);
    color: #0a192f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
    border-radius: 2px;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a192f;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.value-desc {
    color: #5a6a85;
    line-height: 1.7;
    font-size: 0.95rem;
}


/* =================GLOBAL MAP SECTION CSS ============= */

.map-section {
    background-color: #122f68; 
    padding: 100px 0;
    overflow: hidden;
}

.map-container-premium {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)),
        url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&q=80&w=1200');
    background-size: 40px 40px, cover, cover;
    opacity: 0.6;
    z-index: 1;
}

.map-content-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.location-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ffc107; /* Industrial Gold */
    border-radius: 50%;
    box-shadow: 0 0 15px #ffc107;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.location-marker:hover {
    transform: scale(1.5);
    background: #ffffff;
    box-shadow: 0 0 20px #ffffff;
}

.stat-floating-card {
    background: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    position: absolute;
    bottom: 40px;
    left: 40px;
    max-width: 300px;
}


/* =================TIME LINE SECTION ============== */
.history-section {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
}

.timeline-path {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Central Vertical Line */
.timeline-path::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #eef0f2;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* Timeline Nodes */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: #ffffff;
    border: 3px solid #0a192f;
    border-radius: 50%;
    top: 15px;
    z-index: 1;
    transition: 0.3s;
}

.timeline-item:hover::after {
    background-color: #ffc107;
    transform: scale(1.2);
}

.left { left: 0; text-align: right; }
.right { left: 50%; text-align: left; }

.right::after { left: -8px; }

.timeline-card {
    padding: 30px;
    background-color: #f8f9fa;
    position: relative;
    border-radius: 0;
    transition: 0.4s;
}

.timeline-card:hover {
    background-color: #0a192f;
    color: #ffffff;
}

.timeline-date {
    font-weight: 800;
    color: #0a192f;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 10px;
}

.timeline-card:hover .timeline-date {
    color: #ffc107;
}


/* ===============HISTORY SECTION ============== */

.leadership-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.leader-card {
    border: none;
    background: transparent;
    transition: all 0.4s ease;
    text-align: center;
}

.leader-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background-color: #0a192f;
    margin-bottom: 25px;
}

.leader-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.leader-card:hover .leader-img-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.leader-info {
    padding: 10px 0;
}

.leader-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a192f;
    margin-bottom: 5px;
}

.leader-role {
    font-size: 0.8rem;
    color: #8892b0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

/* Social Connectivity */
.leader-social {
    margin-top: 15px;
    opacity: 0;
    transition: 0.3s ease;
}

.leader-card:hover .leader-social {
    opacity: 1;
}

.leader-linkedin {
    color: #0a192f;
    font-size: 1.2rem;
    text-decoration: none;
}


/* ================CERTIFICATION CSS ============= */

.compliance-section {
    background-color: #f8f9fa; 
    padding: 100px 0;
}

.certification-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.certification-card:hover {
    border-color: #0a192f;
    box-shadow: 0 10px 25px rgba(10, 25, 47, 0.05);
}

.cert-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(10, 25, 47, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #0a192f !important;
    font-size: 2rem;
}

.cert-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0a192f;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.cert-desc {
    font-size: 0.75rem;
    color: #8892b0;
    margin-bottom: 0;
}