html {
    font-size: 12px;
    font-family: 'Segoe UI', sans-serif;
}

@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: 60px;
}


/* Root Styling */

/* Hero Section */
.hero {
    background: #e5eaee;
    background-image: linear-gradient(180deg, rgb(225, 230, 240) 0%, #e5eaee 70%);
    padding: 100px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-content {
    flex: 1 1 500px;
}

    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        color: #023e8a;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        color: #495057;
        line-height: 1.6;
    }

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}



.hero-image {
    flex: 1 1 400px;
    text-align: center;
}

    .hero-image img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }


.btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease;
}

.btn-primary {
    background-color: #0077b6;
    color: white;
    border: none;
}

    .btn-primary:hover {
        background-color: #005f90;
    }

.btn-primary-incident {
    color: #fff;
    background-color: #df1d27;
}

.btn-outline {
    border: 2px solid #0077b6;
    color: #0077b6;
    background-color: transparent;
}

    .btn-outline:hover {
        background-color: #0077b6;
        color: white;
    }

.features {
    background-color: #fff;
    padding: 80px 20px;
}

    .features .container {
        max-width: 1100px;
        margin: auto;
    }

    .features h2 {
        text-align: center;
        color: #023e8a;
        margin-bottom: 50px;
        font-size: 2.2rem;
    }

    .features p {
        text-align: center;
        color: #023e8a;
        margin-bottom: 50px;
        font-size: 1rem;
    }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #0077b6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
}

    .feature-card:hover {
        transform: translateY(-4px);
    }

    .feature-card h3 {
        color: #023e8a;
        margin-bottom: 10px;
    }

    .feature-card p {
        color: #444;
        font-size: 0.95rem;
        line-height: 1.5;
    }

.cta-banner {
    background: #023e8a;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #caf0f8;
}

.cta-content .btn-secondary {
    background-color: #90e0ef;
    color: #023e8a;
}



.node circle {
    stroke: #555;
    stroke-width: 1.5px;
}

.node text {
    font: 12px sans-serif;
}

.link {
    fill: none;
    stroke: #999;
    stroke-width: 1.5px;
}

.tooltip {
    position: absolute;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}

.service-tile-light {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #0077b6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

    .service-tile-light:hover {
        transform: translateY(-6px);
        border-color: #00b4d8;
    }

    .service-tile-light h3 {
        font-size: 20px;
        margin-bottom: 5px;
        color: #222;
    }

.badge-light {
    display: inline-block;
    background-color: #e0f4ff;
    color: #0077b6;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.service-tile-light p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-btn {
    display: inline-block;
    background-color: #0077b6;
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.btn-primary-incident {
    color: #fff;
    background-color: #df1d27;
}

.service-btn:hover {
    background-color: #005f90;
    color: #fff;
}

.p {
    text-align: center;
    margin: auto;
    font-size: 16px;
}

h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #0077b6;
}

.new_grid {
    max-width: 1200px;
    margin: 0 auto;
}

.new_services {
    background: #ffffff;
    color: #333;
    padding: 80px 30px;
    font-family: 'Segoe UI', sans-serif;
}


.case-studies-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.case-tile {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 300px;
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.2s;
}

    .case-tile:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .case-tile img {
        max-width: 100%;
        height: auto;
        border-radius: 5px;
    }

    .case-tile h3 {
        margin-top: 15px;
    }

    .case-tile p {
        color: #667;
    }

.case-detail video {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 0 auto 20px;
}

.cs-section {
    margin: 30px 0;
}

    .cs-section h2 {
        font-size: 1.5rem;
        color: #222;
        margin-bottom: 10px;
    }

    .cs-section ul {
        padding-left: 20px;
        list-style-type: disc;
    }

.cs-testimonial {
    background: #f0f8ff;
    border-left: 4px solid #007BFF;
    padding: 20px;
    margin: 40px 0;
    font-style: italic;
}

    .cs-testimonial cite {
        display: block;
        margin-top: 10px;
        font-weight: bold;
        text-align: right;
    }