.cu-sec {
    padding: 60px 20px;
}

/* Heading */
.cu-head {
    text-align: center;
    margin-bottom: 40px;
}

.cu-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000E5;
}

.cu-line {
    width: 120px;
    height: 2px;
    background: #0071BB;
    margin: 10px auto;
}

/* Box */
.cu-box {
    background: #F9FBFF;
    padding: 30px;
}

/* Left Info */
.cu-info-title {
    font-size: 34px;
    font-weight: 700;
    color: #020D1A;
    margin-bottom: 15px;

}

.cu-info-text {
    font-size: 16px;
    color: #000000CC;
    line-height: 130%;
    margin-bottom: 20px;
}

.cu-item {
    margin-bottom: 15px;
}

.cu-item strong {
    display: block;
    font-size: 16px;
}

.cu-item span {
    font-size: 15px;
    color: #000000CC;
}

/* Floating Fields */
.cu-field {
    position: relative;
    margin-bottom: 20px;
}

.cu-field input,
.cu-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 12px 5px 6px;
    font-size: 14px;
    outline: none;
    background: transparent;
    transition: border-color 0.3s ease;
}

/* Label */
.cu-field label {
    position: absolute;
    left: 5px;
    top: 12px;
    font-size: 14px;
    color: #777;
    transition: 0.3s ease;
    pointer-events: none;
}

/* ✅ Correct Float Logic */
.cu-field input:focus+label,
.cu-field input:not(:placeholder-shown)+label,
.cu-field textarea:focus+label,
.cu-field textarea:not(:placeholder-shown)+label {
    top: -8px;
    font-size: 12px;
    color: #0071BB;
}

/* Focus underline */
.cu-field input:focus,
.cu-field textarea:focus {
    border-bottom: 1px solid #0071BB;
}

/* Button */
.cu-btn {
    background: #082148;
    color: #fff;
    padding: 10px 20px;
    border: none;
    font-size: 14px;
    transition: 0.3s;
}

.cu-btn:hover {
    background: #0d2f6b;
}

/* Map */
.cu-map {
    margin-top: 40px;
    
}

.cu-map iframe {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    border: 0;
}

.gap-150 {
    gap: 150px;
}

/* Responsive */
@media (max-width: 767px) {
    .cu-box {
        padding: 20px;
    }
}