:root {
    --primary: #002874;
    --light: #f8f8f8;
    --text: #777;
    --gold: #030e28;
}
  
  
  .contact-section {
            background: #f8f9fb;
        }

        .contact-left-box {
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .map-box iframe {
            width: 100%;
            height: 350px;
            border: 0;
            display: block;
        }

        .contact-info-box {
            padding: 30px;
        }

        .info-item {
            display: flex;
            gap: 18px;
            margin-bottom: 25px;
        }

        .info-item:last-child {
            margin-bottom: 0;
        }

        .icon-box {
            min-width: 55px;
            height: 55px;
            background:var(--primary);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
        }

        .info-item h5 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .info-item p {
            margin: 0;
            color: #666;
            line-height: 1.7;
        }

        .contact-form-box {
            background: #fff;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
        }

        .contact-badge {
            background: #ffe5e3;
            color:var(--primary);
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
        }

        .form-label {
            font-weight: 600;
            margin-bottom: 10px;
            color: #222;
        }

        .input-group {
            border: 1px solid #e4e4e4;
            border-radius: 14px;
            overflow: hidden;
            transition: 0.3s;
        }

        .input-group:focus-within {
            border-color:var(--primary);
            box-shadow: 0 0 0 4px rgba(225, 6, 0, 0.08);
        }

        .input-group-text {
            background: #fff;
            border: none;
            color:var(--primary);
            padding-left: 18px;
        }

        .form-control {
            border: none;
            box-shadow: none !important;
            padding: 14px;
        }

        .textarea-icon {
            align-items: flex-start;
            padding-top: 18px;
        }

        .requirement-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .custom-check {
            background: #f8f9fb;
            padding: 10px 38px;
            border-radius: 14px;
            border: 1px solid #ececec;
        }

        .custom-check .form-check-input {
            margin-top: 5px;
        }

        .submit-btn {
            background:var(--primary);
            color: #fff;
            border: none;
            padding: 16px 35px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            transition: 0.3s;
        }

        .submit-btn:hover {
            background: #c40000;
            transform: translateY(-2px);
        }

        @media(max-width:991px) {

            .contact-form-box {
                padding: 30px 20px;
            }

            .requirement-grid {
                grid-template-columns: 1fr;
            }

            .map-box iframe {
                height: 300px;
            }
        }

        @media(max-width:576px) {

            .info-item {
                flex-direction: column;
                gap: 12px;
            }

            .icon-box {
                width: 55px;
            }

            .contact-form-box {
                padding: 25px 18px;
            }

            .submit-btn {
                width: 100%;
            }
        }