/* CSS Variables */
:root {
    --primary-blue: #1e3a8a; /* Deep Navy Blue */
    --accent-teal: #0d9488; /* Teal for highlights */
    --bg-light: #ffffff;
    --body-bg: #f7f9fb;
    --shadow-base: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0px;
}

.container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.map-wrapper {
    width: 100%;
    height: 520px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

    .map-wrapper iframe {
        width: 100%;
        height: 100%;
        filter: brightness(80%) contrast(110%);
        opacity: 0.95;
    }

/*about us*/

.core-values {
    padding: 32px 0px;
}

.cv-header {
    margin-bottom: 20px;
}

.cv-title {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .cv-title .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #2563eb;
    }

.cv-subtitle {
    font-size: 13px;
    color: #6b7280;
    margin: 6px 0 0;
}

.cv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 14px;
}

.cv-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform .2s ease;
}

    .cv-card:hover {
        transform: translateY(-2px);
    }

    .cv-card h3 {
        font-size: 15px;
        margin: 0 0 4px;
    }

    .cv-card p {
        font-size: 13px;
        margin: 0;
        color: #6b7280;
    }

.cv-card .icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.25);
}

    .cv-card .icon svg {
        width: 20px;
        height: 20px;
        color: #2563eb;
    }