@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;600;700&display=swap');

        body {
            font-family: "Red Hat Display", sans-serif !important;
            font-size: 18px;
            font-weight: 600 !important;
            line-height: 28px;
            color: #575757;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: #014CA3;
            font-weight: 700;
        }
       .container {
        max-width: 1200px !important;
    }

        .text-primary-custom {
            color: #014CA3 !important;
        }

        .btn-custom {
            background-color: #014CA3;
            color: #fff;
            border: none;
            padding: 10px 24px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-custom:hover {
            background-color: #013778;
            color: #fff;
        }

        /* Navbar Styling */
        .navbar-nav .nav-link {
            font-weight: 500;
            color: #333;
            margin: 0 10px;
            transition: color 0.3s;
        }

        .navbar-nav .nav-link:hover {
            color: #014CA3;
        }

        .navbar-brand {
            font-weight: 700;
            color: #014CA3;
            font-size: 24px;
        }

        /* Section Padding */
        section {
            padding: 80px 0;
        }

        /* Project Cards */
        .project-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 20px;
            cursor: pointer;
        }

        .project-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .project-info {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(1, 76, 163, 0.85);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            text-align: center;
            padding: 15px;
        }

        .project-card:hover img {
            transform: scale(1.1);
        }

        .project-card:hover .project-info {
            opacity: 1;
        }

        .project-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #fff;
        }

        .project-location {
            font-size: 14px;
        }

        /* Icon Boxes */
        .icon-box {
            text-align: center;
            padding: 40px 20px;
            border: 1px solid #eaeaea;
            border-radius: 10px;
            transition: box-shadow 0.3s, transform 0.3s;
            height: 100%;
            background: #fff;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .icon-box:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transform: translateY(-5px);
            border: 1px solid #014CA3;
        }

        .icon-box i {
            font-size: 45px;
            color: #014CA3;
            margin-bottom: 20px;
            display: inline-block;
        }

        .icon-box h4 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .icon-box p {
            color: #666;
            margin-bottom: 25px;
            font-size: 15px;
            flex-grow: 1;
        }

        /* Footer */
        footer {
            background-color: #000000;
            color: #ffffff;
            padding: 25px 0;
            text-align: center;
        }

        footer p {
            margin: 0;
            font-size: 15px;
        }